Example #1
0
 /** @test */
 public function it_pays_profit()
 {
     $url = $this->request->amount(1)->orderID(1)->payProfit();
     $expected = $this->request->getGatewayURL() . 'manageTransaction?eBorica=' . Request::PAY_PROFIT . $this->request->getAmount() . $this->request->getOrderID();
     $this->assertSame($expected, $url);
 }