Additional tests on reflection calls

This commit is contained in:
Alexander Udalov
2015-08-07 17:29:02 +03:00
parent ccb58d8601
commit 7dcb690254
7 changed files with 82 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
public class J {
private final String result;
private J(String result) {
this.result = result;
}
private String getResult() {
return result;
}
}