make FailureException a real class with a real getReason() - fixes #6
[phpt.git] / tests / Case / FailureException / getReason-defaults-to-message.phpt
blob233d8a3db70167de71e33829a1afe899119e2f7a
1 --TEST--
2 getReason(), by default, is a raw version of the message
3 --FILE--
4 <?php
6 require_once dirname(__FILE__) . '/../../_setup.inc';
7 require_once dirname(__FILE__) . '/../../Section/_simple-test-case.inc';
9 $some_random_reason = 'some random reason' . rand(100, 200);
11 $failure = new PHPT_Case_FailureException(new PHPT_SimpleTestCase(), $some_random_reason);
12 assert('$failure->getReason() == $some_random_reason');
15 ===DONE===
16 --EXPECT--
17 ===DONE===