/**
  * @depends testGetSub
  */
 public function testGetProperty($cateId)
 {
     $postage = new Product(Config::get());
     $response = $postage->getProperty($cateId);
     $this->assertTrue(is_array($response));
     return $response;
 }