Example #1
0
 public function testKeepAutoIncrementWhenSet()
 {
     $xml = '<?xml version="1.0" ?>
             <table name="dicht*" dump="full" keep-auto-increment="false" />';
     $xmlElement = new \SimpleXMLElement($xml);
     $table = new Table($xmlElement);
     $this->assertFalse($table->keepAutoIncrement());
 }