install(); // Cause a warning 1/0; $line = __LINE__; $collector->uninstall(); list($errno, $msg_text, $errfile, $errline) = $collector->errors[0]; $error_contents = $collector->format_errors(); $this->assertEquals($errno, 2); // Unfortunately $error_contents will contain the full path here, // because the tests directory is outside of phpbb root path. $this->assertStringStartsWith('Errno 2: Division by zero at ', $error_contents); $this->assertStringEndsWith(" line $line", $error_contents); } }