| Total Complexity | 2 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare( strict_types = 1 ); |
||
| 12 | class SqliteConnectorTest extends TestCase |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * |
||
| 16 | */ |
||
| 17 | public function testSetGetPath () : void |
||
| 18 | { |
||
| 19 | $connector = new SqliteConnector(); |
||
| 20 | |||
| 21 | $givenPath = __DIR__ . "/../../samples/data/sqlite/people-db.sqlite"; |
||
| 22 | $expectedPath = __DIR__ . "/../../samples/data/sqlite/people-db.sqlite"; |
||
| 23 | |||
| 24 | $connector->setPath( $givenPath ); |
||
| 25 | |||
| 26 | $this->assertEquals( $expectedPath, $connector->getPath() ); |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * |
||
| 31 | */ |
||
| 32 | public function testSetIsMemory () : void |
||
| 42 | } |
||
| 43 | } |
||
| 44 |