mirror of
https://github.com/nextcloud/server.git
synced 2026-02-19 02:38:40 -05:00
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 PassingTest extends UnitTestCase {
|
|
function test_pass() {
|
|
$this->assertEqual(2,2);
|
|
}
|
|
}
|
|
?>
|