You are here

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

CommandProviderTest
Tests for EdisonLabs\MergeYaml\CommandProvider

Namespace

EdisonLabs\MergeYaml\Unit

Code

public function testCommandProvider() {
  $commandProvider = new CommandProvider();
  $commands = $commandProvider
    ->getCommands();
  $this
    ->assertCount(1, $commands);
  $this
    ->assertInstanceOf('EdisonLabs\\MergeYaml\\MergeYamlCommand', $commands[0]);
}