Ejemplo n.º 1
0
 /**
  * Test Get and Set the Country Object
  *
  * @return void
  *
  * @covers \Rcm\Entity\Site
  */
 public function testGetAndSetCountry()
 {
     $country = new Country();
     $country->setIso3('USA');
     $this->site->setCountry($country);
     $actual = $this->site->getCountry();
     $this->assertTrue($actual instanceof Country);
     $this->assertEquals($country, $actual);
 }