Total Complexity | 3 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class SimpleTest extends TestCase |
||
11 | { |
||
12 | /** |
||
13 | * @covers \EasyDictionary\DataProvider\Simple |
||
14 | */ |
||
15 | public function testClassExistence() |
||
16 | { |
||
17 | self::assertTrue(class_exists('\EasyDictionary\DataProvider\Simple')); |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @covers ::__construct |
||
22 | * @covers ::setData |
||
23 | * @covers ::getData |
||
24 | */ |
||
25 | public function testSetDataFromConfig() |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @covers ::__construct |
||
40 | * @covers ::setData |
||
41 | * @covers ::getData |
||
42 | */ |
||
43 | public function testSetEmptyDataFromBadConfig() |
||
54 | } |
||
55 | } |
||
56 |