/**
  * @see BillingAddressEntity::setCity()
  */
 public function testSetCity()
 {
     $city = 'city_' . rand(1, 9);
     $rs = $this->object->setCity($city);
     $this->assertInstanceOf('\\PayU\\Entity\\Transaction\\BillingAddressEntity', $rs);
     $rs = $this->object->getCity();
     $this->assertInternalType('string', $rs);
     $this->assertEquals($city, $rs);
 }