Re-enable testIsActiveRangeLow/High

This commit is contained in:
Joel Thibault 2013-01-02 10:10:09 -05:00
parent 12f4c6307e
commit a15f368bdc
1 changed files with 2 additions and 4 deletions

View File

@ -179,15 +179,13 @@ public class TraverseActiveRegionsUnitTest extends BaseTest {
return activeIntervals;
}
// TODO: fix this contracts issue and re-enable
@Test (enabled = false, expectedExceptions = PreconditionError.class)
@Test (expectedExceptions = PreconditionError.class)
public void testIsActiveRangeLow () {
DummyActiveRegionWalker walker = new DummyActiveRegionWalker(-0.1);
getActiveRegions(walker, intervals).values();
}
// TODO: fix this contracts issue and re-enable
@Test (enabled = false, expectedExceptions = PreconditionError.class)
@Test (expectedExceptions = PreconditionError.class)
public void testIsActiveRangeHigh () {
DummyActiveRegionWalker walker = new DummyActiveRegionWalker(1.1);
getActiveRegions(walker, intervals).values();