public function testSetAndGetValidators() { $e = new Element('text', 'email'); $e->setValidators(array(new Email())); $vals = $e->getValidators(); $this->assertEquals(1, count($vals)); }