add result property to Case (re #36)
[phpt.git] / tests / Case / is-requires-all-objects-be-Case_Validator.phpt
blobf54df324049c7e196f6552d0ec896c5e00043bec
1 --TEST--
2 PHPT_Case::is() requires all objects passed to it be an instanceof PHPT_Case_Validator
3 --FILE--
4 <?php
6 require_once dirname(__FILE__) . '/../_setup.inc';
8 class FooBarValidator {
9     public function is() { }
12 $case = new PHPT_Case(new PHPT_SectionList(), dirname(__FILE__) . '/fake-test-case.phpt');
13 $case->is(new FooBarValidator());
16 ===DONE===
17 --EXPECTREGEX--
18 .*\$validator instanceof PHPT_Case_Validator.*
19 ===DONE===