mirror of
https://github.com/nextcloud/server.git
synced 2026-04-23 07:08:34 -04:00
9 lines
174 B
PHP
9 lines
174 B
PHP
|
|
<?php
|
||
|
|
require_once(dirname(__FILE__) . '/../../autorun.php');
|
||
|
|
|
||
|
|
class FailingTest extends UnitTestCase {
|
||
|
|
function test_fail() {
|
||
|
|
$this->assertEqual(1,2);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
?>
|