This repository has been archived on 2018-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
sleepy/tests/Core/aTypeTest.php

19 lines
357 B
PHP
Executable File

<?php
use Sleepy\Core\Interfaces\Type as iType;
use Sleepy\Core\Abstracts\Type as aType;
class aTypeTest extends Sleepy_TestCase {
public function testSanity()
{
$this->assertEquals(
['Sleepy\\Core\\Interfaces\\Type' => 'Sleepy\\Core\\Interfaces\\Type'],
class_implements('Sleepy\\Core\\Abstracts\\Type')
);
}
}
// End of aTypeTest.php