Search:
Login
Settings
Help/Guide
About Trac
Wiki
Timeline
Roadmap
Browse Source
View Tickets
New Ticket
Search
Ticket #240
: ClazzTest.php
File ClazzTest.php, 248 bytes (added by Oleg Marchuk <kingoleg@mail.ru>, 4 months ago)
Line
1
<?php
2
require_once
'PHPUnit/Framework.php'
;
3
4
require_once
'Clazz.php'
;
5
6
class
ClazzTest
extends
PHPUnit_Framework_TestCase
7
{
8
public function
testMethod
() {
9
$testClazz
= new
Clazz
();
10
self
::
assertEquals
(
'return'
,
$testClazz
->
method
());
11
}
12
}
13
14
?>
15
Download in other formats:
Original Format