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