3 class XHTMLCompiler_ExceptionTest
extends UnitTestCase
6 $e = new XHTMLCompiler_Exception(500, 'Argh!', 'Matey overboard'); $l = __LINE__
;
7 $this->assertEqual($e->getCode(), 500);
8 $this->assertEqual($e->getMessage(), 'Argh!');
9 $this->assertEqual($e->getDetails(), 'Matey overboard');
10 $this->assertEqual($e->getLine(), $l); // test Exception inheritance