Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function testSetEndpointAfterCreate() |
||
24 | { |
||
25 | $ipag = new Ipag(new Authentication('[email protected]'), Endpoint::SANDBOX); |
||
26 | |||
27 | $this->assertEquals(Endpoint::SANDBOX, $ipag->getEndpoint()->getUrl()); |
||
28 | |||
29 | $ipag->setEndpoint(new Endpoint(Endpoint::PRODUCTION)); |
||
30 | |||
31 | $this->assertEquals(Endpoint::PRODUCTION, $ipag->getEndpoint()->getUrl()); |
||
32 | } |
||
34 |