コード例 #1
0
ファイル: RoleTest.php プロジェクト: Evyy/cffs-api
 /** @test */
 public function should_create_role()
 {
     $this->assertInstanceOf('Cffs\\Domain\\Model\\Identity\\Role', $this->role);
     $this->assertEquals($this->id, $this->role->id());
     $this->assertEquals($this->title, $this->role->title());
     $this->assertEquals($this->slug, $this->role->slug());
 }