[tests] javadoc highlighting tests merger and cleanup

This commit is contained in:
Roman Shevchenko
2016-03-07 16:02:31 +01:00
parent ec4b8b92eb
commit f759a56f8f
43 changed files with 195 additions and 337 deletions

View File

@@ -0,0 +1,11 @@
class Test {
private int myFoo;
public int getFoo() {
return myFoo;
}
public void setFoo(int foo) {
myFoo = foo;
}
}