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
Raw Normal View History

2014-05-07 14:05:13 -04:00
<?php
2014-05-14 10:32:31 -04:00
use Sleepy\Core\Interfaces\Type as iType;
use Sleepy\Core\Abstracts\Type as aType;
2014-05-07 14:05:13 -04:00
class aTypeTest extends Sleepy_TestCase {
public function testSanity()
{
2014-05-14 10:32:31 -04:00
$this->assertEquals(
['Sleepy\\Core\\Interfaces\\Type' => 'Sleepy\\Core\\Interfaces\\Type'],
class_implements('Sleepy\\Core\\Abstracts\\Type')
);
2014-05-07 14:05:13 -04:00
}
2014-05-14 10:32:31 -04:00
2014-05-07 14:05:13 -04:00
}
// End of aTypeTest.php