added tests for collections

This commit is contained in:
Svetlana Isakova
2012-09-20 14:42:33 +04:00
parent 45dbf36b53
commit b081615e59
4 changed files with 277 additions and 0 deletions
@@ -1995,6 +1995,11 @@ public class JetDiagnosticsTestGenerated extends AbstractDiagnosticsTestWithEage
JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), "org.jetbrains.jet.checkers.AbstractDiagnosticsTestWithEagerResolve", new File("compiler/testData/diagnostics/tests/library"), "kt", true);
}
@TestMetadata("Collections.kt")
public void testCollections() throws Exception {
doTest("compiler/testData/diagnostics/tests/library/Collections.kt");
}
@TestMetadata("kt828.kt")
public void testKt828() throws Exception {
doTest("compiler/testData/diagnostics/tests/library/kt828.kt");
@@ -377,4 +377,8 @@ public class StdlibTest extends CodegenTestCase {
public void testKt2596() {
blackBoxFile("regressions/kt2596.kt");
}
public void testCollections() {
blackBoxFile("jdk-annotations/collections.kt");
}
}