diff --git a/libraries/runtests/runtests.iml b/libraries/runtests/runtests.iml deleted file mode 100644 index d3512eba98c..00000000000 --- a/libraries/runtests/runtests.iml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/libraries/runtests/test/stdlib/testall/CollectionTestAllTest.java b/libraries/runtests/test/stdlib/testall/CollectionTestAllTest.java deleted file mode 100644 index 7c35873be61..00000000000 --- a/libraries/runtests/test/stdlib/testall/CollectionTestAllTest.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright 2010-2012 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package stdlib.testall; - -import junit.framework.TestSuite; -import test.collections.*; -import test.string.*; - -/** - */ -public class CollectionTestAllTest { - public static TestSuite suite() { - return new TestSuite(StringTest.class, CollectionTest.class, MapTest.class); - } -} diff --git a/libraries/runtests/test/stdlib/testall/DomTestAllTest.java b/libraries/runtests/test/stdlib/testall/DomTestAllTest.java deleted file mode 100644 index 1e0cb3c4211..00000000000 --- a/libraries/runtests/test/stdlib/testall/DomTestAllTest.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright 2010-2012 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package stdlib.testall; - -import junit.framework.TestSuite; -import test.dom.*; - -/** - */ -public class DomTestAllTest { - public static TestSuite suite() { - return new TestSuite(DomBuilderTest.class, DomTest.class); - } -} diff --git a/libraries/runtests/test/stdlib/testall/LanguageTestAllTest.java b/libraries/runtests/test/stdlib/testall/LanguageTestAllTest.java deleted file mode 100644 index 65cc48fbb5e..00000000000 --- a/libraries/runtests/test/stdlib/testall/LanguageTestAllTest.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright 2010-2012 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package stdlib.testall; - -import junit.framework.TestSuite; -import test.language.*; - -/** - */ -public class LanguageTestAllTest { - public static TestSuite suite() { - return new TestSuite(JavaClassTest.class, NullableCollectionsTest.class); - } -} diff --git a/libraries/runtests/test/stdlib/testall/PegdownAllTest.java b/libraries/runtests/test/stdlib/testall/PegdownAllTest.java deleted file mode 100644 index 338ae434fd8..00000000000 --- a/libraries/runtests/test/stdlib/testall/PegdownAllTest.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright 2010-2012 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package stdlib.testall; - -import junit.framework.TestSuite; -import test.pegdown.*; - -/** - */ -public class PegdownAllTest { - public static TestSuite suite() { - return new TestSuite(PegdownTest.class); - } -} diff --git a/libraries/runtests/test/stdlib/testall/PropertiesAllTest.java b/libraries/runtests/test/stdlib/testall/PropertiesAllTest.java deleted file mode 100644 index 5b087567854..00000000000 --- a/libraries/runtests/test/stdlib/testall/PropertiesAllTest.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright 2010-2012 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package stdlib.testall; - -import junit.framework.TestSuite; -import test.properties.*; - -/** - */ -public class PropertiesAllTest { - public static TestSuite suite() { - return new TestSuite(PropertiesTest.class); - } -} diff --git a/libraries/runtests/test/stdlib/testall/TestAll.java b/libraries/runtests/test/stdlib/testall/TestAll.java deleted file mode 100644 index 328d01f756a..00000000000 --- a/libraries/runtests/test/stdlib/testall/TestAll.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright 2010-2012 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package stdlib.testall; - -import junit.framework.TestSuite; -import test.collections.*; -import test.standard.*; - -/** - */ -public class TestAll { - public static TestSuite suite() { - TestSuite suite = new TestSuite(GetOrElseTest.class, test.stdlib.issues.StdLibIssuesTest.class, StandardCollectionTest.class, CollectionTest.class, IoTest.class, ListTest.class, MapTest.class, SetTest.class, OldStdlibTest.class); - suite.addTest(testDslExample.namespace.getSuite()); - return suite; - } -}