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

toJsonMethodShouldReturnJson() public method

Test that the [toJson] serializes the data into a JSON string.
    public function toJsonMethodShouldReturnJson()
    {
        // Arrange...
        $responseBuilder = $this->app->make('responder.success');
        // Act...
        $json = $responseBuilder->toCollection();
        // Assert...
        $this->assertEquals(json_encode(['success' => true, 'data' => null]), $json);
    }
SuccessResponseBuilderTest