/**
  * @see BillingAddressEntity::setStreet1()
  */
 public function testSetStreet1()
 {
     $street1 = 'street_' . rand(1, 9);
     $rs = $this->object->setStreet1($street1);
     $this->assertInstanceOf('\\PayU\\Entity\\Transaction\\BillingAddressEntity', $rs);
     $rs = $this->object->getStreet1();
     $this->assertInternalType('string', $rs);
     $this->assertEquals($street1, $rs);
 }