Aacotroneo\Saml2\Saml2AuthTest::testSlsOK PHP Method

testSlsOK() public method

public testSlsOK ( )
    public function testSlsOK()
    {
        $auth = m::mock('OneLogin_Saml2_Auth');
        $saml2 = new Saml2Auth($auth);
        $auth->shouldReceive('processSLO')->once();
        $auth->shouldReceive('getErrors')->once()->andReturn(null);
        $error = $saml2->sls();
        $this->assertEmpty($error);
    }