icingaweb2/library/Icinga/Test/DbTest.php

50 lines
997 B
PHP
Raw Permalink Normal View History

<?php
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
namespace Icinga\Test;
use Icinga\Data\Db\DbConnection;
interface DbTest
{
/**
* PHPUnit provider for mysql
*
* @return DbConnection
*/
2025-12-12 05:23:40 -05:00
public static function mysqlDb();
/**
* PHPUnit provider for pgsql
*
* @return DbConnection
*/
2025-12-12 05:23:40 -05:00
public static function pgsqlDb();
/**
* PHPUnit provider for oracle
*
* @return DbConnection
*/
2025-12-12 05:23:40 -05:00
public static function oracleDb();
/**
* Executes sql file on PDO object
*
* @param DbConnection $resource
2014-04-10 05:33:24 -04:00
* @param string $filename
*
* @return boolean Operational success flag
*/
public function loadSql(DbConnection $resource, $filename);
/**
* Setup provider for testcase
*
* @param string|DbConnection|null $resource
*/
public function setupDbProvider($resource);
}