I have these values coming from a test
previousTokenValues[1] = \"1378994409108\" currentTokenValues[1] = \"1378994416509\"
and I try
As I recognize, at the moment, in JUnit, the syntax is like this:
AssertTrue(Long.parseLong(previousTokenValues[1]) > Long.parseLong(currentTokenValues[1]), "your fail message ");
Means that, the condition is in front of the message.