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]
/
src
/
PHPT
/
Section
/
EXPECT.php
blob
8775de5f2aa68cf7f59503ff86d60159fe006834
1
<
?php
2
3
class
PHPT_Section_EXPECT
extends
PHPT_Section_ExpectationAbstract
4
{
5
protected function
_isValid
(
PHPT_Case
$case
)
6
{
7
return
strcmp
(
rtrim
(
$case
->
output
),
$this
->
_expected
) ==
0
;
8
}
9
}