more java tests moved to community

This commit is contained in:
Alexey Kudravtsev
2010-06-25 10:48:17 +04:00
parent 735a9d17a8
commit 2718da9fc7
1139 changed files with 14287 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<module version="4" relativePaths="true" type="JAVA_MODULE">
<component name="ModuleRootManager" />
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Lib" level="project" />
<orderEntryProperties />
</component>
</module>

View File

@@ -0,0 +1,5 @@
// "Add 'junit.jar' to classpath" "true"
package x;
public class DoTest extends TestCase<caret>{
}

View File

@@ -0,0 +1,9 @@
// "Add 'junit.jar' to classpath" "true"
package x;
public class DoTest4 {
@Test<caret>
void f() {
}
}

View File

@@ -0,0 +1,11 @@
package x;
/**
* Created by IntelliJ IDEA.
* User: cdr
* Date: Aug 22, 2006
* Time: 11:09:04 AM
* To change this template use File | Settings | File Templates.
*/
public class InA {
}