*/
public void testGetActiveIncludePaths() {
Project project = new org.apache.tools.ant.Project();
CompilerDef def = new CompilerDef();
def.setProject(project);
ConditionalPath path = def.createIncludePath();
path.setLocation(new File(".."));
path.setIf("debug");
//
// Evaluate without "debug" set
//
String[] includePaths = def.getActiveIncludePaths();
assertEquals(0, includePaths.length);