create(); } public function testAssertionConsumerServiceAction() { $this->expectException(\RuntimeException::class); $this->expectExceptionMessage('You must configure the check path in your firewall.'); $oauth = $this->getAuth(); $sut = new SamlController($oauth); $sut->assertionConsumerServiceAction(); } public function testLogoutAction() { $this->expectException(\RuntimeException::class); $this->expectExceptionMessage('You must configure the logout path in your firewall.'); $oauth = $this->getAuth(); $sut = new SamlController($oauth); $sut->logoutAction(); } }