Apex 「Method does not exist or incorrect signature: void startTest() from the type test」の解決方法
環境
Salesforce Apex
エラー
「Method does not exist or incorrect signature: void startTest() from the type test」の発生原因は、データ型の問題のようです。
解決方法
このエラー「Method does not exist or incorrect signature: void startTest() from the type test」の解決策は、「System.」を追加すれば回避できます。
修正前
Test.startTest();
Systemを加えれば、コンパイルが正常に通ります。
修正後
System.Test.startTest();