Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function testTestMode() |
||
14 | { |
||
15 | $this->assertSame($this->gateway, $this->gateway->setTestMode(false)); |
||
16 | $this->assertSame(false, $this->gateway->getTestMode()); |
||
17 | |||
18 | $this->assertSame($this->gateway, $this->gateway->setTestMode(true)); |
||
19 | $this->assertSame(true, $this->gateway->getTestMode()); |
||
20 | } |
||
28 |