mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 06:37:56 -04:00
9 lines
174 B
PHP
9 lines
174 B
PHP
|
|
<?php
|
||
|
|
require_once(dirname(__FILE__) . '/../../autorun.php');
|
||
|
|
|
||
|
|
class PassingTest extends UnitTestCase {
|
||
|
|
function test_pass() {
|
||
|
|
$this->assertEqual(2,2);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
?>
|