calc/tests/testTest.php
2022-06-19 11:30:51 +02:00

22 lines
417 B
PHP

<?php
namespace PSC\Library\Calc\Tests;
use PHPUnit\Framework\TestCase;
use PSC\Library\Calc\Article;
use PSC\Library\Calc\Engine;
use PSC\Library\Calc\Option\Type\Base;
use PSC\Library\Calc\PaperContainer\Container;
class testTest extends TestCase
{
public function testNotOk()
{
$this->assertFalse(false);
}
public function testOk()
{
$this->assertTrue(true);
}
}