add result property to Case (re #36)
[phpt.git] / tests / Case / is-returns-result-of-validator.phpt
blobeb3ab8b30e2f771ab41203a05f4c0d36bf763e95
1 --TEST--
2 is() returns the result of the Validator object that it is used with
3 --ARGS--
4 --FILE--
5 <?php
7 require_once dirname(__FILE__) . '/../_setup.inc';
8 require_once dirname(__FILE__) . '/_foobar-validator.inc';
10 $case = new PHPT_Case(new PHPT_SectionList(), dirname(__FILE__) . '/fake-test-case.phpt');
12 $validator = new FooBarValidator();
13 assert('$case->is($validator) == true');
15 $validator->return = false;
16 assert('$case->is($validator) == false');
19 ===DONE===
20 --EXPECT--
21 ===DONE===