1 | <?php |
||
10 | class ChangesTest extends FlexiBeeROTest |
||
11 | { |
||
12 | /** |
||
13 | * @var Changes |
||
14 | */ |
||
15 | protected $object; |
||
16 | |||
17 | /** |
||
18 | * Sets up the fixture, for example, opens a network connection. |
||
19 | * This method is called before a test is executed. |
||
20 | */ |
||
21 | protected function setUp() |
||
25 | |||
26 | /** |
||
27 | * @covers FlexiPeeHP\Changes::enable |
||
28 | */ |
||
29 | public function testEnable() |
||
34 | |||
35 | /** |
||
36 | * @covers FlexiPeeHP\Changes::performRequest |
||
37 | * @depends testEnable |
||
38 | */ |
||
39 | public function testPerformRequest() |
||
43 | |||
44 | /** |
||
45 | * @covers FlexiPeeHP\Changes::idExists |
||
46 | * @depends testEnable |
||
47 | */ |
||
48 | public function testIdExists() |
||
52 | |||
53 | /** |
||
54 | * @covers FlexiPeeHP\Changes::getFlexiData |
||
55 | * @depends testEnable |
||
56 | */ |
||
57 | public function testGetFlexiData() |
||
81 | |||
82 | /** |
||
83 | * @covers FlexiPeeHP\Changes::recordExists |
||
84 | */ |
||
85 | public function testRecordExists() |
||
89 | |||
90 | /** |
||
91 | * @covers FlexiPeeHP\Changes::disable |
||
92 | */ |
||
93 | public function testDisable() |
||
98 | |||
99 | /** |
||
100 | * @covers FlexiPeeHP\Changes::getStatus |
||
101 | */ |
||
102 | public function testGetStatus() |
||
107 | |||
108 | /** |
||
109 | * Tears down the fixture, for example, closes a network connection. |
||
110 | * This method is called after a test is executed. |
||
111 | */ |
||
112 | protected function tearDown() |
||
116 | } |
||
117 |