为什么我可以“伪造”Java中异常的堆栈跟踪?
如果我运行以下测试,它将失败:
public class CrazyExceptions {
private Exception exception;
@Before
public void setUp(){
exception = new Exception();
}
@Test
public void stackTraceMentionsTheLocationWhereTheExceptionWasThrown(){
String thisMethod = new Exception().getStackTrace()[0].getMethodName();
try {
throw exception;
}
catch(Exception e) {
assertEquals(thisMethod, e.getStackTrace()[0].getMethodName());
}
}
}
出现以下错误:
Expected :stackTraceMentionsTheLocationWhereTheExceptionWasThrown
Actual :setUp
堆栈跟踪只是平坦地躺着。
为什么在引发异常时不重写堆栈跟踪?我不是Java开发人员,也许我在这里错过了一些东西。