I want to enable the approval tool in ant . In my ant build.xml I set the following, trying to include statements.
<project> ... <assertions> <enable/> </assertions> </project>
I put the statement in a junit file that includes only one function,
testAssertions() { assert false; }
when you run ant statement fails. How to enable a statement in this parameter?
source share