<?php 
 
class Test 
{ 
    /** @noinspection PhpUnhandledExceptionInspection */ 
    public function testMethod() 
    { 
 
        # TODO Test 1: Uncomment to get an Error Output 
        echo $foo; 
 
        # TODO Test 2: Uncomment to get an throw exception Output 
        #throw new Exception('This is an Example of throw Exception'); 
 
        # TODO Test 3: Uncomment to get an shutdown Output 
        #set_time_limit(1); 
        #while (true) { 
        #} 
    } 
}
 
 |