You are here

public function BuilderTest::pushShouldReturnSelf in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/stack/builder/tests/unit/Stack/BuilderTest.php \Stack\BuilderTest::pushShouldReturnSelf()

@test

File

vendor/stack/builder/tests/unit/Stack/BuilderTest.php, line 44

Class

BuilderTest
@covers Stack\Builder

Namespace

Stack

Code

public function pushShouldReturnSelf() {
  $stack = new Builder();
  $this
    ->assertSame($stack, $stack
    ->push('Stack\\AppendA'));
}