Neos\Flow\Tests\Unit\Persistence\Doctrine\DataTypes\JsonArrayTypeTest::jsonConversionReturnsNullIfArrayIsNull PHP Method

jsonConversionReturnsNullIfArrayIsNull() public method

    public function jsonConversionReturnsNullIfArrayIsNull()
    {
        $json = $this->jsonArrayTypeMock->convertToDatabaseValue(null, $this->abstractPlatformMock);
        $this->assertEquals(null, $json);
    }