예제 #1
0
 /**
  * @covers Puml\Model\MethodParameter::getType
  */
 public function testGetType()
 {
     $type = 'boolean';
     $this->object->setType($type);
     $this->assertSame($type, $this->object->getType());
 }