Exemplo n.º 1
0
 /**
  * @see TransactionEntity::setPaymentCountry()
  * @dataProvider providerPaymentoCountries
  */
 public function testSetPaymentCountry($paymentCountry)
 {
     $rs = $this->object->setPaymentCountry($paymentCountry);
     $this->assertInstanceOf('\\PayU\\Entity\\Transaction\\TransactionEntity', $rs);
     $rs = $this->object->getPaymentCountry();
     $this->assertInternalType('string', $rs);
     $this->assertEquals($paymentCountry, $rs);
 }