3579446930
includes some tests for storage providers, more to come
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);
|
|
}
|
|
}
|
|
?>
|