Esempio n. 1
0
 public function testSetName()
 {
     // new entity
     $semester = new Semester();
     // Use the setName method
     $semester->setName("VÅR2015");
     // Assert the result
     $this->assertEquals("VÅR2015", $semester->getName());
 }