diff --git a/test/ValueTest.php b/test/ValueTest.php index ce2e96b..3521517 100644 --- a/test/ValueTest.php +++ b/test/ValueTest.php @@ -400,28 +400,6 @@ public function testArrayMustContainDataElement(Generator $generator) $val = AbstractValue::getXmlRpcValue($xml, AbstractValue::XML_STRING); } - /** - * @group ZF-5405 - * @dataProvider ZendTest\XmlRpc\TestProvider::provideGenerators - */ - public function testMarshalNilInStructWrappedInArray(Generator $generator) - { - if (version_compare(phpversion(), '5.4', '>=')) { - // SimpleXMLElement don't understand NIL - $this->markTestIncomplete('Code to test is not compatible with PHP 5.4'); - } - - AbstractValue::setGenerator($generator); - $expected = [['id' => '1', 'name' => 'vertebra, caudal', 'description' => null]]; - $xml = '' - . 'id1' - . 'namevertebra, caudal' - . 'description' - . ''; - $val = AbstractValue::getXmlRpcValue($xml, AbstractValue::XML_STRING); - $this->assertSame($expected, $val->getValue()); - } - // Struct public function testFactoryAutodetectsStruct()