tests compatibility with old phpunit
This commit is contained in:
parent
7fb6205eee
commit
3768110faa
3 changed files with 27 additions and 9 deletions
|
@ -44,24 +44,30 @@ class WC_Retailcrm_Customer_Switcher_State_Test extends WC_Retailcrm_Test_Case_H
|
|||
$this->assertFalse($state->feasible());
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException \InvalidArgumentException
|
||||
*/
|
||||
public function test_validate_empty()
|
||||
{
|
||||
$this->expectException('\InvalidArgumentException');
|
||||
$state = new WC_Retailcrm_Customer_Switcher_State();
|
||||
$state->validate();
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException \InvalidArgumentException
|
||||
*/
|
||||
public function test_validate_order()
|
||||
{
|
||||
$this->expectException('\InvalidArgumentException');
|
||||
$state = new WC_Retailcrm_Customer_Switcher_State();
|
||||
$state->setWcOrder(new WC_Order())
|
||||
->validate();
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException \InvalidArgumentException
|
||||
*/
|
||||
public function test_validate_customer_and_contact_set()
|
||||
{
|
||||
$this->expectException('\InvalidArgumentException');
|
||||
$state = new WC_Retailcrm_Customer_Switcher_State();
|
||||
$state->setWcOrder(new WC_Order())
|
||||
->setNewCustomer(array('id' => 1))
|
||||
|
|
|
@ -11,23 +11,29 @@
|
|||
|
||||
class WC_Retailcrm_WC_Customer_Builder_Test extends WC_Retailcrm_Test_Case_Helper
|
||||
{
|
||||
/**
|
||||
* @expectedException \RuntimeException
|
||||
*/
|
||||
public function test_empty()
|
||||
{
|
||||
$this->expectException('\RuntimeException');
|
||||
$builder = new WC_Retailcrm_WC_Customer_Builder();
|
||||
$builder->build();
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException \RuntimeException
|
||||
*/
|
||||
public function test_empty_array()
|
||||
{
|
||||
$this->expectException('\RuntimeException');
|
||||
$builder = new WC_Retailcrm_WC_Customer_Builder();
|
||||
$builder->setData(array())->build();
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException \RuntimeException
|
||||
*/
|
||||
public function test_not_array()
|
||||
{
|
||||
$this->expectException('\RuntimeException');
|
||||
$builder = new WC_Retailcrm_WC_Customer_Builder();
|
||||
$builder->setData(new stdClass())->build();
|
||||
}
|
||||
|
|
|
@ -11,21 +11,27 @@
|
|||
|
||||
class WC_Retailcrm_Customer_Switcher_Result_Test extends WC_Retailcrm_Test_Case_Helper
|
||||
{
|
||||
/**
|
||||
* @expectedException \InvalidArgumentException
|
||||
*/
|
||||
public function test_invalid_both()
|
||||
{
|
||||
$this->expectException('\InvalidArgumentException');
|
||||
new WC_Retailcrm_Customer_Switcher_Result(new stdClass(), new stdClass());
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException \InvalidArgumentException
|
||||
*/
|
||||
public function test_invalid_customer()
|
||||
{
|
||||
$this->expectException('\InvalidArgumentException');
|
||||
new WC_Retailcrm_Customer_Switcher_Result(new stdClass(), new WC_Order());
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException \InvalidArgumentException
|
||||
*/
|
||||
public function test_invalid_order()
|
||||
{
|
||||
$this->expectException('\InvalidArgumentException');
|
||||
new WC_Retailcrm_Customer_Switcher_Result(new WC_Customer(), new stdClass());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue