Refactor stepping tests

This commit is contained in:
Natalia Ukhorskaya
2015-05-22 12:54:08 +03:00
parent cf163181f1
commit 5d9daf3890
42 changed files with 90 additions and 94 deletions
@@ -0,0 +1,14 @@
package forTests;
import org.jetbrains.annotations.NotNull;
public class MyJavaClass {
public void testFun() {
int i = 1;
}
@NotNull
public String testNotNullFun() {
return "a";
}
}