use of suite.fp.FunRbTreeTest in project suite by stupidsing.
the class FailedTests method testTypeCheck.
// takes 11 seconds to type check
@Test
public void testTypeCheck() throws IOException {
long start = System.currentTimeMillis();
new FunRbTreeTest().test();
long end = System.currentTimeMillis();
assertTrue(end - start < 1000l);
}
Aggregations