SensioLabs\DeprecationDetector\Tests\Console\Command\CheckCommand\CheckCommandTest::testCommandWithFilterMethodOption PHP Метод

testCommandWithFilterMethodOption() публичный Метод

    public function testCommandWithFilterMethodOption()
    {
        $this->executeCommand('examples', 'examples', array('--filter-methods' => 'OtherClass::hello,foo4::bar'));
        $this->executeCommand('examples', 'examples', array('--filter-methods' => 'OtherClass::hello,foo4::bar'));
        $display = $this->commandTester->getDisplay();
        $this->assertNotRegExp('/foo4->bar\\(\\)/', $display);
        $this->assertNotRegExp('/OtherClass->hello\\(\\)/', $display);
    }