forked from devsam/core
9 lines
163 B
PHP
9 lines
163 B
PHP
<?php
|
|
|
|
use \PHPUnit\Framework\TestCase;
|
|
|
|
final class BasicTest extends TestCase{
|
|
public function testHelloWorld(){
|
|
$this->assertEquals(1+1, 2);
|
|
}
|
|
} |