17 lines
296 B
PHP
17 lines
296 B
PHP
<?php namespace Tests\ImsStorage;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use Packback\Lti1p3\ImsStorage\ImsCache;
|
|
|
|
class ImsCacheTest extends TestCase
|
|
{
|
|
|
|
public function testItInstantiates()
|
|
{
|
|
$cache = new ImsCache();
|
|
|
|
$this->assertInstanceOf(ImsCache::class, $cache);
|
|
}
|
|
}
|