mirror of
https://github.com/nextcloud/server.git
synced 2026-02-22 09:21:04 -05:00
7 lines
110 B
PHP
Executable file
7 lines
110 B
PHP
Executable file
<?php
|
|
class test1 extends UnitTestCase {
|
|
function test_pass(){
|
|
$this->assertEqual(3,1+2, "pass1");
|
|
}
|
|
}
|
|
?>
|