@@ -26,9 +26,9 @@ $helper->space();
2626$ helper ->header ('Test getters (default) ' );
2727$ helper ->method_matches ($ obj , 'getIsolate ' , $ isolate );
2828$ helper ->method_matches ($ obj , 'getContext ' , $ context );
29- $ helper ->method_matches ($ obj , 'exception ' , null );
30- $ helper ->method_matches ($ obj , 'message ' , null );
31- $ helper ->method_matches ($ obj , 'stackTrace ' , null );
29+ $ helper ->method_matches ($ obj , 'getException ' , null );
30+ $ helper ->method_matches ($ obj , 'getMessage ' , null );
31+ $ helper ->method_matches ($ obj , 'getStackTrace ' , null );
3232
3333$ helper ->method_matches ($ obj , 'canContinue ' , false );
3434$ helper ->method_matches ($ obj , 'hasTerminated ' , false );
@@ -49,9 +49,9 @@ $helper->space();
4949$ helper ->header ('Test getters ' );
5050$ helper ->method_matches ($ obj , 'getIsolate ' , $ isolate );
5151$ helper ->method_matches ($ obj , 'getContext ' , $ context );
52- $ helper ->method_matches ($ obj , 'exception ' , $ exception );
53- $ helper ->method_matches ($ obj , 'message ' , $ message );
54- $ helper ->method_matches ($ obj , 'stackTrace ' , $ trace );
52+ $ helper ->method_matches ($ obj , 'getException ' , $ exception );
53+ $ helper ->method_matches ($ obj , 'getMessage ' , $ message );
54+ $ helper ->method_matches ($ obj , 'getStackTrace ' , $ trace );
5555
5656$ helper ->method_matches ($ obj , 'canContinue ' , true );
5757$ helper ->method_matches ($ obj , 'hasTerminated ' , true );
@@ -104,9 +104,9 @@ Test getters (default):
104104-----------------------
105105V8\TryCatch::getIsolate() matches expected value
106106V8\TryCatch::getContext() matches expected value
107- V8\TryCatch::exception () matches expected value
108- V8\TryCatch::message () matches expected value
109- V8\TryCatch::stackTrace () matches expected value
107+ V8\TryCatch::getException () matches expected value
108+ V8\TryCatch::getMessage () matches expected value
109+ V8\TryCatch::getStackTrace () matches expected value
110110V8\TryCatch::canContinue() matches expected value
111111V8\TryCatch::hasTerminated() matches expected value
112112
@@ -215,9 +215,9 @@ Test getters:
215215-------------
216216V8\TryCatch::getIsolate() matches expected value
217217V8\TryCatch::getContext() matches expected value
218- V8\TryCatch::exception () matches expected value
219- V8\TryCatch::message () matches expected value
220- V8\TryCatch::stackTrace () matches expected value
218+ V8\TryCatch::getException () matches expected value
219+ V8\TryCatch::getMessage () matches expected value
220+ V8\TryCatch::getStackTrace () matches expected value
221221V8\TryCatch::canContinue() matches expected value
222222V8\TryCatch::hasTerminated() matches expected value
223223V8\TryCatch::getExternalException() matches expected value
0 commit comments