config->set('HTML', 'Trusted', true); $this->config->set('Attr', 'EnableID', true); $this->config->set('Cache', 'DefinitionImpl', null); } function testBasicUse() { $this->assertResult( // need support for label for later '




Male
Female

' ); } function testSelectOption() { $this->assertResult('

'); } function testSelectOptgroup() { $this->assertResult('

'); } function testTextarea() { $this->assertResult('

'); } // label tests omitted function testFieldset() { $this->assertResult('
Personal Information Last Name: First Name: Address: ...more personal information...
Medical History Smallpox Mumps Dizziness Sneezing ...more medical history...
Current Medication Are you currently taking any medication? Yes No If you are currently taking medication, please indicate it in the space below:
'); } function testInputTransform() { $this->assertResult('', ''); } function testTextareaTransform() { $this->assertResult('', ''); } function testTextInFieldset() { $this->assertResult('
foo
'); } }