Domain\Matter\Http\MatterControllerTest::test_show_real PHP Method

test_show_real() public method

public test_show_real ( )
    public function test_show_real()
    {
        $matter = factory(Matter::class)->create();
        $controller = App::make(MatterController::class);
        $get = $controller->show($matter->id);
        $this->assertInstanceOf(Matter::class, $get);
        $this->assertEquals($get->id, $matter->id);
    }