| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class InvalidColumnIndexTest extends TestCase |
||
| 12 | { |
||
| 13 | public function testNew() : void |
||
| 14 | { |
||
| 15 | $exception = InvalidColumnIndex::new(5, 1); |
||
| 16 | |||
| 17 | self::assertInstanceOf(DBALException::class, $exception); |
||
| 18 | self::assertSame('Invalid column index 5. The statement result contains 1 column.', $exception->getMessage()); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function testNewPlural() : void |
||
| 27 | } |
||
| 28 | } |
||
| 29 |