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