Domain\Lesson\Http\LessonControllerTest::test_show_real PHP Method

test_show_real() public method

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