forked from mirrors/easyappointments
11 lines
158 B
PHP
11 lines
158 B
PHP
|
<?php
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class SampleTest extends TestCase {
|
||
|
public function test_example()
|
||
|
{
|
||
|
$this->assertTrue(TRUE);
|
||
|
}
|
||
|
}
|