Fix tests

This commit is contained in:
Amine Ben hammou
2019-02-21 13:26:41 +01:00
committed by M. Shull
parent 0a436087e1
commit 3ff55d85a9
8 changed files with 63 additions and 69 deletions

View File

@@ -482,4 +482,16 @@ class Functions {
function hasFilter() {
return call_user_func_array('has_filter', func_get_args());
}
function wcPrice() {
return call_user_func_array('wc_price', func_get_args());
}
function wcGetOrder() {
return call_user_func_array('wc_get_order', func_get_args());
}
function wcGetCustomerOrderCount() {
return call_user_func_array('wc_get_customer_order_count', func_get_args());
}
}