Ejemplo n.º 1
0
 public function testNullResetsAttributeValue()
 {
     $attr = new Attribute('foo', Attr::REQUIRED, Attr::SINGLE);
     $attr->setValue('foo');
     $attr->setValue(NULL);
     $this->assertFalse($attr->isDefined());
 }