mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 11:44:01 +00:00
* chore(deps): update dependencies * feat(tests): add matrix testing, problem matcher * feat(lint): add php-cs-fixer, fix codebase
29 lines
706 B
PHP
29 lines
706 B
PHP
<?php
|
|
|
|
namespace Superhelio\Commands\Tests;
|
|
|
|
/**
|
|
* @internal
|
|
* @coversNothing
|
|
*/
|
|
class ReloadTest extends \Orchestra\Testbench\TestCase
|
|
{
|
|
public function testReloadTest()
|
|
{
|
|
self::assertTrue(true);
|
|
}
|
|
|
|
public function testReloadIsInstalled()
|
|
{
|
|
self::assertTrue(class_exists('\\Superhelio\\Commands\\Commands\\Reload'));
|
|
}
|
|
|
|
public function testReloadHasRequiredMethodsAndProperties()
|
|
{
|
|
$reload = new \ReflectionClass('\\Superhelio\\Commands\\Commands\\Reload');
|
|
self::assertTrue($reload->hasMethod('handle'));
|
|
self::assertTrue($reload->hasProperty('signature'));
|
|
self::assertTrue($reload->hasProperty('description'));
|
|
}
|
|
}
|