public function testGetSetType()
 {
     $tasktype = 123;
     $this->assertInstanceOf('Opg\\Core\\Model\\Entity\\Task\\Task', $this->task->setType($tasktype));
     $this->assertEquals($tasktype, $this->task->getType());
 }