Plum\Plum\Converter\NullConverterTest::convertShouldConvertNullToDefinedNullValue PHP Method

convertShouldConvertNullToDefinedNullValue() public method

    public function convertShouldConvertNullToDefinedNullValue()
    {
        $converter = new NullConverter(0);
        $this->assertSame(0, $converter->convert(null));
    }