public function testSetGetOperation()
 {
     $operation = new Operation();
     $operation->setName("psych op");
     $this->phase->setOperation($operation);
     $this->assertEquals("psych op", $this->phase->getOperation()->getName());
 }