Ejemplo n.º 1
0
 public function testSetType()
 {
     // new entity
     $subforum = new Subforum();
     // Use the setType method
     $subforum->setType("general");
     // Assert the result
     $this->assertEquals("general", $subforum->getType());
 }