CommandProviderTest.php in Database Sanitize 7
File
vendor/edisonlabs/merge-yaml/tests/src/Unit/CommandProviderTest.php
View source
<?php
namespace EdisonLabs\MergeYaml\Unit;
use EdisonLabs\MergeYaml\CommandProvider;
use PHPUnit\Framework\TestCase;
class CommandProviderTest extends TestCase {
public function testCommandProvider() {
$commandProvider = new CommandProvider();
$commands = $commandProvider
->getCommands();
$this
->assertCount(1, $commands);
$this
->assertInstanceOf('EdisonLabs\\MergeYaml\\MergeYamlCommand', $commands[0]);
}
}