예제 #1
0
파일: GroupTest.php 프로젝트: cobase/cobase
 /**
  * @test
  *
  * @group entity
  * @group group-entity
  */
 public function testThatSettingTitleWorks()
 {
     $group = new Group();
     $title = 'This is a test';
     $group->setTitle($title);
     $this->assertEquals($title, $group->getTitle());
 }