} catch (NullPointerException ex) {
}
}
public void testGetRebuild() {
CompilerConfiguration config = new DummyConfiguration();
TargetInfo targetInfo = new TargetInfo(config, new File[]{new File(
"FoO.BaR")}, null, new File("foo.o"), false);
assertEquals(false, targetInfo.getRebuild());
targetInfo = new TargetInfo(config, new File[]{new File("FoO.BaR")},
null, new File("foo.o"), true);
assertEquals(true, targetInfo.getRebuild());
}