From 1912a779e01203097156662b7fd13cd67e8bb7c8 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Sun, 5 Apr 2020 12:13:09 +0300 Subject: [PATCH] create category in tests --- tests/test-wc-retailcrm-icml.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/test-wc-retailcrm-icml.php b/tests/test-wc-retailcrm-icml.php index a5a2cdc..883f721 100644 --- a/tests/test-wc-retailcrm-icml.php +++ b/tests/test-wc-retailcrm-icml.php @@ -8,7 +8,14 @@ class WC_Retailcrm_Icml_Test extends WC_Retailcrm_Test_Case_Helper WC_Helper_Product::create_simple_product(); } - WC_Helper_Product::create_variation_product(); + wp_insert_term( + 'Test', // the term + 'product_cat', // the taxonomy + array( + 'description'=> 'Test', + 'slug' => 'test' + ) + ); } public function testGenerate()