I have these values ββcoming from a test
previousTokenValues[1] = "1378994409108" currentTokenValues[1] = "1378994416509"
and I try
// current timestamp is greater assertTrue(Long.parseLong(previousTokenValues[1]) > Long.parseLong(currentTokenValues[1]));
I get java.lang.AssertionError and detailMessage when debugging null .
How can I claim more than conditions when using JUnit
java junit
daydreamer Sep 12 '13 at 13:53 on 2013-09-12 13:53
source share