コード例 #1
0
 /**
  * @return array
  */
 public function getCountries()
 {
     return $this->repository->getCountries();
 }
コード例 #2
0
 public function testGetCountries()
 {
     $countries = $this->repository->getCountries();
     $this->assertCount(3, $countries);
     $this->assertEquals(['id' => '1', 'code' => 'fr', 'label' => 'countries.france'], $countries[0]);
 }