public function BuilderTest::unshiftShouldReturnSelf in Zircon Profile 8
Same name and namespace in other branches
- 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
StackCode
public function unshiftShouldReturnSelf() {
$stack = new Builder();
$this
->assertSame($stack, $stack
->unshift('Stack\\AppendA'));
}