into a JUnit test cla I have this extremelly simple method:
public void stupidTest() {
assert(false);
}
The strange thing is that performing this method I obtain a GREEN BAR and not a red one as I expected (I think that assert(true) have to give me a green bar and assert(false) a red bar).
Why? What am I missing?