TechieDrill Your World Of Technical Tutorials

Posts Tagged ‘assertion’

Java Assertions

11.22.2009 · Posted in Java

Assertions are typically a predictable statements that we can program. Assertions facilitate to test our assumptions about our program. Assertions holds a boolean value which we assume it to be true, if it turn it to be false then interpreter will throw an exception. Having assertions in programs will be feasible for us to detect and correct ...