mite-php-legacy/tests/MiteTest.php

13 lines
210 B
PHP
Raw Normal View History

2018-12-09 08:04:11 +00:00
<?php
use PHPUnit\Framework\TestCase;
class MiteTest extends TestCase {
public function testMiteExist() {
$mite = new Mite();
$this->assertInstanceOf('Mite', $mite);
}
}