1 | <?php |
||
20 | * @see \Fresh\SinchBundle\Helper\SinchSupportedCountries |
||
21 | */ |
||
22 | class SinchSupportedCountriesTest extends \PHPUnit_Framework_TestCase |
||
23 | { |
||
24 | public function testSupportedCountry() |
||
25 | { |
||
26 | $this->assertTrue(SinchSupportedCountries::isCountrySupported('UA')); |
||
27 | } |
||
28 | |||
29 | public function testUnsupportedCountry() |
||
30 | { |
||
31 | $this->assertFalse(SinchSupportedCountries::isCountrySupported('YO')); |
||
32 | } |
||
34 |