示例#1
0
 /**
  * @see PaymentApi::getHtml()
  */
 public function testGetHtml()
 {
     $id = PaymentApi::getDeviceSessionId();
     $rs = $this->object->getHtml($id);
     $deviceSessionId = $id . PaymentApi::USER_ID;
     $position = strpos($rs, $deviceSessionId);
     $this->assertGreaterThan(0, $position);
 }