woocommerce/tests/unit-tests/discounts/discount.php

44 lines
584 B
PHP

<?php
/**
* Test for the discount class.
* @package WooCommerce\Tests\Discounts
*/
class WC_Tests_Discount extends WC_Unit_Test_Case {
/**
* Test get and set ID.
*/
public function test_get_set_id() {
}
/**
* Test get and set ID.
*/
public function test_get_set_amount() {
}
/**
* Test get and set discount total.
*/
public function test_get_set_discount_total() {
}
/**
* Test get and set taxes.
*/
public function test_get_set_taxes() {
}
/**
* Test calculate negative taxes.
*/
public function test_calculate_negative_taxes() {
}
}