Flugg\Responder\Tests\Unit\SuccessResponseBuilderTest::toArrayMethodShouldSerializeData PHP Méthode

toArrayMethodShouldSerializeData() public méthode

Test that the [toArray] method serializes the data given, using the default serializer and no data.
    public function toArrayMethodShouldSerializeData()
    {
        // Arrange...
        $responseBuilder = $this->app->make('responder.success');
        // Act...
        $array = $responseBuilder->toArray();
        // Assert...
        $this->assertEquals(['success' => true, 'data' => null], $array);
    }
SuccessResponseBuilderTest