config->set('AutoFormat', 'RemoveEmpty', true); } function testPreserve() { $this->assertResult('asdf'); } function testRemove() { $this->assertResult('', ''); } function testRemoveWithSpace() { $this->assertResult(' ', ''); } function testRemoveWithAttr() { $this->assertResult('', ''); } function testRemoveIdAndName() { $this->assertResult('', ''); } function testPreserveColgroup() { $this->assertResult(''); } function testPreserveId() { $this->config->set('Attr', 'EnableID', true); $this->assertResult(''); } function testPreserveName() { $this->config->set('Attr', 'EnableID', true); $this->assertResult(''); } function testRemoveNested() { $this->assertResult('', ''); } function testRemoveNested2() { $this->assertResult('', ''); } function testRemoveNested3() { $this->assertResult(' ', ''); } } // vim: et sw=4 sts=4