public function testAttributeHasCorrectName()
 {
     $attr = new Attribute('foo', true, true);
     $this->assertSame('foo', $attr->getName());
     $attr = new Attribute(1.8, true, true);
     $this->assertSame('1.8', $attr->getName());
 }