Theme tests as extension test

This commit is contained in:
Martin Aeschlimann
2016-04-06 16:39:00 +02:00
parent 4d1a9fe47b
commit 24dfa08f6f
18 changed files with 3399 additions and 87 deletions

View File

@@ -0,0 +1,38 @@
import org.junit.Test;
/*
* Multi line comment
*/
public class TestClass {
private String aString;
/**
* @param args
*/
public void doSomething(int a) {
double b = 0.0;
double c = 10e3;
long l = 134l;
}
/*
* multiline comment
*/
@SuppressWarnings(value = "aString")
private long privateMethod(long b){
for (int i = 0; i < 9; i++) {
System.out.println("Hello" + i);
}
return 10;
}
//single line comment
@Test
public void someTests() {
int hex = 0x5;
Vector<Number> v = new Vector();
}
}

File diff suppressed because it is too large Load Diff