20553c1afe
This reverts commit dccdeca258
.
9 lines
No EOL
174 B
PHP
Executable file
9 lines
No EOL
174 B
PHP
Executable file
<?php
|
|
require_once(dirname(__FILE__) . '/../../autorun.php');
|
|
|
|
class FailingTest extends UnitTestCase {
|
|
function test_fail() {
|
|
$this->assertEqual(1,2);
|
|
}
|
|
}
|
|
?>
|