Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function testNegotiate() |
||
16 | { |
||
17 | |||
18 | $confTest = new TestCase\AuthSource\Negotiate( |
||
19 | new TestData([ |
||
20 | 'keytab' => 'example/test.keytab', |
||
21 | 'autorization' => 'abc:123', |
||
22 | ]) |
||
23 | ); |
||
24 | $testResult = $confTest->getTestResult(); |
||
25 | |||
26 | $this->assertEquals(State::SKIPPED, $testResult->getState()); |
||
27 | } |
||
29 |