mite-php-legacy/tests/MiteTest.php

13 lines
210 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class MiteTest extends TestCase {
public function testMiteExist() {
$mite = new Mite();
$this->assertInstanceOf('Mite', $mite);
}
}