Methods Summary |
---|
private java.lang.String | callDepth0()
return Debug.getCaller();
|
private java.lang.String | callDepth1()
return callDepth2();
|
private java.lang.String | callDepth2()
return callDepth3();
|
private java.lang.String | callDepth3()
return callDepth4();
|
private java.lang.String | callDepth4()
return Debug.getCallers(3);
|
public void | testGetCaller()
assertTrue(callDepth0().matches(EXPECTED_GET_CALLER));
|
public void | testGetCallers()
assertTrue(callDepth1().matches(EXPECTED_GET_CALLERS));
|