在写测试类的时候,无意中遇到了下面这个问题。
Apex Testing Query : System.FinalException: Testing already started
测试类的代码如下
Test.startTest();
ctr.getenableNext();
Test.stopTest();
Test.stopTest();
原来犯了一下很低级的错误
下面的Test.stopTest()无意中写了两次。
所以才会出现下面这个错误。
System.FinalException: Testing already stopped
Test.stopTest();