Beispiel #1
0
 public function testName()
 {
     $field = new \Ongoo\Component\Form\Field();
     $this->variable($field->getName())->isNull();
     $field->setName("foo");
     $this->string($field->getName())->isEqualTo("foo");
     $field = new \Ongoo\Component\Form\Field("bar");
     $this->variable($field->getName())->isNotNull()->string($field->getName())->isEqualTo("bar");
     $field->setName("foo");
     $this->string($field->getName())->isEqualTo("foo");
 }