Hi everybody
I just want to test "assert" statement with a programm like this:
public static void main(String[] args)
{
System.out.println("start");
assert 1 + 1 == 5;
System.out.println("end");
}
and the result is:
start
end
Why?
I'm using eclipse 3.5.
Is existing a mean to disable assertions in eclipe?
Thanks a lot. Pierre
