mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-11 02:22:25 +03:00
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);
|
||
|
}
|
||
|
}
|