Backup\Model\Database\MysqlTest::testExportStructureOnly PHP Метод

testExportStructureOnly() публичный Метод

Test
public testExportStructureOnly ( ) : void
Результат void
    public function testExportStructureOnly()
    {
        $connection = $this->object->getAdapter()->getDriver()->getConnection();
        $parameters = $connection->getConnectionParameters();
        if ($parameters['driver'] != 'pdo_mysql') {
            return;
        }
        $this->assertInternalType('string', $this->object->export('structureonly'));
    }