N98\Magento\Command\Developer\ProfilerCommandTest::testExecute PHP Method

testExecute() public method

public testExecute ( )
    public function testExecute()
    {
        $application = $this->getApplication();
        $application->add(new ProfilerCommand());
        $application->setAutoExit(false);
        $command = $this->getApplication()->find('dev:profiler');
        $commandTester = new CommandTester($command);
        $commandTester->execute(array('command' => $command->getName(), '--global' => true, '--on' => true));
        $this->assertRegExp('/Profiler enabled/', $commandTester->getDisplay());
        $commandTester = new CommandTester($command);
        $commandTester->execute(array('command' => $command->getName(), '--global' => true, '--off' => true));
        $this->assertRegExp('/Profiler disabled/', $commandTester->getDisplay());
    }
ProfilerCommandTest