repo.or.cz
/
phpt.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add @todo note
[phpt.git]
/
tests
/
Case
/
result-property-is-null-at-instantiation.phpt
blob
6770f171c8d795676252e9fb75e76a14fc4d45be
1
--TEST--
2
PHPT_Case->result is null when instantiated
3
--FILE--
4
<?php
5
6
require_once dirname(__FILE__) . '/../_setup.inc';
7
8
$case = new PHPT_Case(
9
new PHPT_SectionList(array()),
10
dirname(__FILE__) . '/fake-test.phpt'
11
);
12
assert('is_null($case->result)');
13
14
?>
15
===DONE===
16
--EXPECT--
17
===DONE===
18
19