You are here

public function OutputFormatterStyleStackTest::testPopEmpty in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php \Symfony\Component\Console\Tests\Formatter\OutputFormatterStyleStackTest::testPopEmpty()

File

vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php, line 42

Class

OutputFormatterStyleStackTest

Namespace

Symfony\Component\Console\Tests\Formatter

Code

public function testPopEmpty() {
  $stack = new OutputFormatterStyleStack();
  $style = new OutputFormatterStyle();
  $this
    ->assertEquals($style, $stack
    ->pop());
}