OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
stella-maris
/
clock
/
tests
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:33:36 AM
rwxr-xr-x
📄
ClockInterfaceTest.php
567 bytes
08/12/2024 10:33:36 AM
rw-r--r--
Editing: ClockInterfaceTest.php
Close
<?php /** * Copyright Andreas Heigl <andreas@heigl.org> * * Licenses under the MIT-license. For details see the included file LICENSE.md */ namespace StellaMaris\ClockTest; use PHPUnit\Framework\TestCase; use StellaMaris\Clock\ClockInterface; class ClockInterfaceTest extends TestCase { /** * @testdox The interface can be autoloaded * @covers ClockInterface::now; */ public function testInterfaceIsUsable() : void { self::assertInstanceof(ClockInterface::class, $this->getMockBuilder(ClockInterface::class)->getMock()); } }