-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProdsRuleTest.php
43 lines (34 loc) · 927 Bytes
/
ProdsRuleTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
require_once dirname(__FILE__) . '/../../src/ProdsRule.class.php';
/**
* Test class for ProdsRule.
* Generated by PHPUnit on 2011-02-24 at 16:39:16.
*/
class ProdsRuleTest extends PHPUnit_Framework_TestCase {
/**
* @var ProdsRule
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp() {
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown() {
}
/**
* @todo Implement testExecute().
*/
public function testExecute() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}
?>