Exemplo n.º 1
0
 /**
  * @testdox Calling getByNumeric with a known numeric returns an associative array with the data.
  * @dataProvider numericProvider
  *
  * @param string $numeric
  * @param array $expected
  */
 public function testGetByNumeric($numeric, $expected)
 {
     $iso3166 = new ISO3166();
     $this->assertEquals($expected, $iso3166->getByNumeric($numeric));
 }