Domain\Schedule\Http\ScheduleControllerTest::test_show_real PHP Метод

test_show_real() публичный Метод

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