| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function convertTest() |
||
| 13 | {
|
||
| 14 | $get = file_get_contents("https://www.google.com/finance/converter?a=10&from=USD&to=INR");
|
||
| 15 | $get = explode("<span class=bld>",$get);
|
||
| 16 | $get = explode("</span>",$get[1]);
|
||
| 17 | $exceptedResult = preg_replace("/[^0-9\.]/", null, $get[0]);
|
||
| 18 | |||
| 19 | $actualResult = CurrencyHelper::convert('USD', 'INR', 10, false);
|
||
| 20 | |||
| 21 | |||
| 22 | $this->assertEquals($exceptedResult, $actualResult); |
||
| 23 | } |
||
| 24 | |||
| 26 |