| Total Complexity | 2 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class ErrorHandlingInQueriesTest extends TestCase |
||
| 23 | { |
||
| 24 | protected function setUp(): void |
||
| 25 | { |
||
| 26 | parent::setUp(); |
||
| 27 | |||
| 28 | $this->subjectUnderTest = InMemoryStoreSqlite::createInstance(); |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * What if a result variable is not used in query. |
||
| 33 | */ |
||
| 34 | public function testResultVariableNotUsedInQuery() |
||
| 59 | } |
||
| 60 | } |
||
| 61 |