Are asserts available on Android? I have:
assert(null);
It does nothing and I am in the debug mode.
you can just use Android JUnit Assert:
Assert.assertTrue(false);