Domain\Config\Http\ConfigControllerTest::test_get_real PHP Метод

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

public test_get_real ( )
    public function test_get_real()
    {
        $config = factory(Config::class)->create();
        $controller = App::make(ConfigController::class);
        $get = $controller->show($config->field);
        $this->assertInstanceOf(Config::class, $get);
        $this->assertEquals($get->field, $config->field);
    }