Hello,
I've implemented support for being able to supply String type user supplied
IDs, and being able to retrieve vertices based on a given String type
supplied ID. However, I am failing the following test:
shouldAddVertexWithUserSuppliedStringId
Because the test is testing to see if:
assertEquals("1000", v.id());
It seems that the test is assuming that v.id() is a String, which it isn't
for my implementation, it's a custom type. Why is the test assuming that
v.id() returns a String?
Best,
Jonathan