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