Eccube\Tests\EccubeTestCase::createProduct PHP Method

createProduct() public method

Product オブジェクトを生成して返す.
public createProduct ( string $product_name = null, integer $product_class_num = 3 ) : Product
$product_name string 商品名. null の場合はランダムな文字列が生成される.
$product_class_num integer 商品規格の生成数
return Eccube\Entity\Product
    public function createProduct($product_name = null, $product_class_num = 3)
    {
        return $this->app['eccube.fixture.generator']->createProduct($product_name, $product_class_num);
    }