Migration1674204177TaxProvider example


class Migration1656657834TaxProviderTest extends TestCase
{
    use KernelTestBehaviour;

    public function testTablesAreCreated(): void
    {
        $connection = $this->getContainer()->get(Connection::class);
        $connection->executeStatement('DROP TABLE IF EXISTS `tax_provider_translation`');
        $connection->executeStatement('DROP TABLE IF EXISTS `tax_provider`');

        $migration = new Migration1674204177TaxProvider();
        $migration->update($connection);
        $migration->update($connection);

        static::assertNotFalse($connection->fetchFirstColumn('SELECT COUNT(*) FROM `tax_provider`'));
        static::assertNotFalse($connection->fetchFirstColumn('SELECT COUNT(*) FROM `tax_provider_translation`'));
    }
}
Home | Imprint | This part of the site doesn't use cookies.