One of the correct answers from OCP Java SE 6 Programmer Practice Exams is:
You can programmatically test wheather assertions have been enabled without throwing an
AssertionError
.
How can I do that?
The Oracle Java Tutorial provides information about how to do it...
http://docs.oracle.com/javase/7/docs/technotes/guides/language/assert.html
An excerpt from the tutorial
7. Why not provide a construct to query the assert status of the containing class?
Such a construct would encourage people to inline complex assertion code, which we view as a bad thing. Further, it is straightforward to query the assert status atop the current API, if you feel you must:
boolean assertsEnabled = false; assert assertsEnabled = true; // Intentional side-effect!!! // Now assertsEnabled is set to the correct value
Official solution*:
Source: http://hg.openjdk.java.net/javadoc-next/api/nashorn/rev/fa79d912da1b#l1.38
* As official as it gets:
As mentioned by @Hurkan Dogan here there was a AssertsEnabled.assertsEnabled()
api in nashorn package which is now deprecated. However, its implementation could be considered as the official solution.
Also note that this solution is also written in the official docs and mentioned by @Joe here
package io.github.baijifeilong.tmp;
import io.vavr.control.Try;
/**
* Created by [email protected] at 2019-04-18 09:12
*/
public class TmpApp {
public static void main(String[] args) {
Try.run(() -> {
assert false;
}).onSuccess($ -> {
throw new RuntimeException("Assertion is not enabled");
});
}
}
Maybe help someone.
I use this
I am not sure this is the "official" way.