Apex 「Method does not exist or incorrect signature: void startTest() from the type test」の解決方法

環境
Salesforce
開発者コンソール

エラー現象
Method does not exist or incorrect signature: void stopTest() from the type test

対策
このエラー「Method does not exist or incorrect signature: void startTest() from the type test」の解決策は、「System.」を追加すれば回避できます。

修正前コード
Test.stopTest();
Test.startTest();

修正後コード
System.test.startTest();
System.test.stopTest();

Apex

Posted by arkgame