Flugg\Responder\Tests\Unit\SuccessResponseBuilderTest::addMetaMethodShouldReturnItself PHP Method

addMetaMethodShouldReturnItself() public method

Test that the [addMeta] method returns the response builder, allowing for fluent method chaining.
    public function addMetaMethodShouldReturnItself()
    {
        // Arrange...
        $responseBuilder = $this->app->make('responder.success');
        // Act...
        $result = $responseBuilder->addMeta([]);
        // Assert...
        $this->assertSame($responseBuilder, $result);
    }
SuccessResponseBuilderTest