コード例 #1
0
 public function testSetShortName()
 {
     // new entity
     $department = new Department();
     // Use the setShortName method
     $department->setShortName("NTNU");
     // Assert the result
     $this->assertEquals("NTNU", $department->getShortName());
 }