28 lines
531 B
Java
28 lines
531 B
Java
package spoon;
|
|
|
|
import some.superduper.HelperClass;
|
|
import some.superduper.SomeVO;
|
|
|
|
public class SpoonClassToTest {
|
|
|
|
private static HelperClass helper;
|
|
|
|
public SpoonClassToTest() {}
|
|
|
|
public int publicMethod() {}
|
|
|
|
private int internalStuff() {}
|
|
|
|
protected SomeVO protectedMethod() {
|
|
return new SomeVO();
|
|
}
|
|
|
|
void packageProtectedMethod() {
|
|
|
|
try {
|
|
HelperClass.callSomeMethodThatThrows();
|
|
}
|
|
catch(Exception ignored) {}
|
|
}
|
|
|
|
} |