Domain\Config\Http\ConfigControllerTest::test_index_returns_configs PHP Method

test_index_returns_configs() public method

    public function test_index_returns_configs()
    {
        factory(Config::class)->create();
        $controller = App::make(ConfigController::class);
        $configs = $controller->index();
        $this->assertInstanceOf(LengthAwarePaginator::class, $configs);
        $this->assertInstanceOf(Config::class, $configs->first());
    }