Domain\Auth\AuthServiceTest::test_login_falied_exception PHP Method

test_login_falied_exception() public method

    public function test_login_falied_exception()
    {
        $user = [];
        $auth = App::make(AuthService::class);
        $this->setExpectedException(TypeError::class);
        $auth->login($user);
    }