| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | abstract class AbstractQuoterTest extends TestCase |
||
| 11 | { |
||
| 12 | use TestTrait; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @dataProvider \Yiisoft\Db\Tests\Provider\QuoterProvider::ensureColumnName() |
||
| 16 | */ |
||
| 17 | public function testsEnsureColumnName(string $columnName, string $expected): void |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @dataProvider \Yiisoft\Db\Tests\Provider\QuoterProvider::ensureNameQuoted() |
||
| 24 | */ |
||
| 25 | public function testsEnsureNameQuoted(string $name, string $expected): void |
||
| 30 |