remove unused code

This commit is contained in:
Christian Flothmann 2015-03-16 15:12:21 +01:00
parent d50f0a89cd
commit 8529719c01
1 changed files with 1 additions and 4 deletions

View File

@ -25,12 +25,9 @@ class XmlDumperTest extends \PHPUnit_Framework_TestCase
public function testDump()
{
$dumper = new XmlDumper($container = new ContainerBuilder());
$dumper = new XmlDumper(new ContainerBuilder());
$this->assertXmlStringEqualsXmlFile(self::$fixturesPath.'/xml/services1.xml', $dumper->dump(), '->dump() dumps an empty container as an empty XML file');
$container = new ContainerBuilder();
$dumper = new XmlDumper($container);
}
public function testExportParameters()