Enable assert statements?
Posted: Tue Jun 05, 2012 5:27 pm
It would be nice if the developers of TextPad 5.4.2 decided to implement the functionality which automatically runs the following command when an assert statement is detected in the code. The option is commonly accessible through Tools > External Tools > Compile (Ctrl + 1).
[/code]
Code: Select all
class Assertion
{
public static void main (String[] args)
{
int a = 5;
assert (a != 5);
}
}