Esempio n. 1
0
 /**
  * @test
  */
 public function it_should_remove_a_province()
 {
     $province = $this->getMock('\\LMammino\\EFoundation\\Address\\Model\\ProvinceInterface');
     $this->country->addProvince($province);
     $this->assertTrue($this->country->hasProvince($province));
     $this->country->removeProvince($province);
     $this->assertFalse($this->country->hasProvince($province));
 }