コード例 #1
0
 /**
  * @depends \Test\Data\ProductTest::testGetData
  */
 public function testCreate($data)
 {
     $postage = new Product(Config::get());
     $response = $postage->create($data);
     $this->assertTrue(is_string($response));
     return $response;
 }