add result property to Case (re #36)
[phpt.git] / tests / Case / is-string-must-point-to-Case_Validator-object.phpt
blob4a0b060c6069e06e8fcc2d4494e222f37ebcfcc5
1 --TEST--
2 When a string is used or PHPT_Case::is(), it must point to an object that implements
3 PHPT_Case_Validator
4 --FILE--
5 <?php
7 require_once dirname(__FILE__) . '/../_setup.inc';
9 class PHPT_Case_Validator_Foobar {
10     public function is() { }
13 $case = new PHPT_Case(new PHPT_SectionList());
14 $case->is('Foobar');
17 ===DONE===
18 --EXPECTREGEX--
19 .*\$validator instanceof PHPT_Case_Validator.*
20 ===DONE===