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