public function CommandProviderTest::testCommandProvider in Database Sanitize 7
Tests for EdisonLabs\MergeYaml\CommandProvider
File
- vendor/
edisonlabs/ merge-yaml/ tests/ src/ Unit/ CommandProviderTest.php, line 16
Class
Namespace
EdisonLabs\MergeYaml\UnitCode
public function testCommandProvider() {
$commandProvider = new CommandProvider();
$commands = $commandProvider
->getCommands();
$this
->assertCount(1, $commands);
$this
->assertInstanceOf('EdisonLabs\\MergeYaml\\MergeYamlCommand', $commands[0]);
}