* Evaluate isActive when "unless" specifies a property whose value suggests
* the user thinks the value is significant.
*
*/
public final void testIsActive5() {
LibrarySet libset = new LibrarySet();
Project project = new Project();
//
// setting the value to false should throw
// exception to warn user that they are misusing if
//
project.setProperty("windows", "false");
libset.setUnless("windows");
try {
boolean isActive = libset.isActive(project);
} catch (BuildException ex) {
return;
}
fail();
}