| Total Complexity | 2 | 
| Total Lines | 26 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 12 | class ComparatorTest extends DbalFunctionalTestCase  | 
            ||
| 13 | { | 
            ||
| 14 | /** @var AbstractSchemaManager */  | 
            ||
| 15 | private $schemaManager;  | 
            ||
| 16 | |||
| 17 | /** @var Comparator */  | 
            ||
| 18 | private $comparator;  | 
            ||
| 19 | |||
| 20 | protected function setUp()  | 
            ||
| 21 |     { | 
            ||
| 22 | parent::setUp();  | 
            ||
| 23 | |||
| 24 | $this->schemaManager = $this->connection->getSchemaManager();  | 
            ||
| 25 | $this->comparator = new Comparator();  | 
            ||
| 26 | }  | 
            ||
| 27 | |||
| 28 | public function testDefaultValueComparison()  | 
            ||
| 38 | }  | 
            ||
| 39 | }  | 
            ||
| 40 |