1 | <?php |
||
9 | class FinderTest extends \PHPUnit_Framework_TestCase |
||
10 | { |
||
11 | /** |
||
12 | * @var Finder |
||
13 | */ |
||
14 | protected $object; |
||
15 | |||
16 | /** |
||
17 | * @var Connection |
||
18 | */ |
||
19 | protected $db; |
||
20 | |||
21 | /** |
||
22 | * Sets up the fixture, for example, opens a network connection. |
||
23 | * This method is called before a test is executed. |
||
24 | */ |
||
25 | protected function setUp() |
||
35 | |||
36 | protected function tearDown() { |
||
39 | |||
40 | /** |
||
41 | */ |
||
42 | public function testGetConnectionFail() |
||
47 | |||
48 | public function testGetConnection() |
||
58 | |||
59 | public function testPreventDoubleExecute() |
||
67 | |||
68 | public function testPreventOneDoubleExecute() |
||
76 | |||
77 | public function testMissingIdentifiers() |
||
83 | } |
||
84 |