public function testConstructorOptions()
 {
     $field = new Field("bar", array("label" => "Bar Label", "otherOption" => "foo"));
     $this->assertSame("Bar Label", $field->getLabel());
     $this->assertSame("foo", $field->getOption("otherOption"));
 }