Skip to content

Commit 24dfa08

Browse files
committed
Theme tests as extension test
1 parent 4d1a9fe commit 24dfa08

18 files changed

Lines changed: 3394 additions & 82 deletions

File tree

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import org.junit.Test;
2+
3+
/*
4+
* Multi line comment
5+
*/
6+
public class TestClass {
7+
8+
private String aString;
9+
10+
/**
11+
* @param args
12+
*/
13+
public void doSomething(int a) {
14+
double b = 0.0;
15+
double c = 10e3;
16+
long l = 134l;
17+
}
18+
19+
/*
20+
* multiline comment
21+
*/
22+
@SuppressWarnings(value = "aString")
23+
private long privateMethod(long b){
24+
for (int i = 0; i < 9; i++) {
25+
System.out.println("Hello" + i);
26+
}
27+
return 10;
28+
}
29+
30+
//single line comment
31+
@Test
32+
public void someTests() {
33+
int hex = 0x5;
34+
Vector<Number> v = new Vector();
35+
}
36+
37+
38+
}

0 commit comments

Comments
 (0)