You are here

public function BuilderTest::unshiftShouldReturnSelf in Zircon Profile 8

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

@test

File

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

Class

BuilderTest
@covers Stack\Builder

Namespace

Stack

Code

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