2015-09-07 11:44:36 -06:00
|
|
|
// assertions/Assert1.java
|
2015-06-15 17:47:35 -07:00
|
|
|
// Non-informative style of assert
|
|
|
|
// {JVMArgs: -ea} // Must run with -ea
|
|
|
|
// {ThrowsException}
|
|
|
|
|
|
|
|
public class Assert1 {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
assert false;
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
}
|
|
|
|
/* Output:
|
2015-06-15 17:47:35 -07:00
|
|
|
___[ Error Output ]___
|
|
|
|
Exception in thread "main" java.lang.AssertionError
|
|
|
|
at Assert1.main(Assert1.java:8)
|
|
|
|
___[ Exception is Expected ]___
|
2015-09-07 11:44:36 -06:00
|
|
|
*/
|