Example #1
0
 public function testMetaDisappearsIfNoPropertiesOnMinimization()
 {
     $obj = new Document();
     $obj->setMetaProperty('foo', 'bar');
     $obj->minimize();
     $this->assertObjectNotHasAttribute('@meta', $obj);
 }