Example #1
0
 public function testSelectConditionWhenConditionIsEmpty()
 {
     $xml = '<?xml version="1.0" ?>
             <table name="dicht*" dump="full" condition="   " />';
     $xmlElement = new \SimpleXMLElement($xml);
     $table = new Table($xmlElement);
     $this->assertTrue($table->isDataDumpRequired());
     $this->assertEquals('', $table->getCondition());
 }