Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2022-09-11 12:06:29 +0300
committerAleksander Machniak <alec@alec.pl>2022-09-11 12:06:29 +0300
commit2859a69338481119b4d66c4fb9877ec7d86a324a (patch)
treef17b696c65590fa569bc135ce0964d948912480a
parent019801a430e27c95d03cbb24fc233ec22e692500 (diff)
Remove tests related to MSSQL and Oracle
-rw-r--r--tests/Framework/DBMssql.php22
-rw-r--r--tests/Framework/DBOracle.php22
-rw-r--r--tests/Framework/DBSqlsrv.php22
3 files changed, 0 insertions, 66 deletions
diff --git a/tests/Framework/DBMssql.php b/tests/Framework/DBMssql.php
deleted file mode 100644
index a1dced142..000000000
--- a/tests/Framework/DBMssql.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-/**
- * Test class to test rcube_db_mssql class
- *
- * @package Tests
- * @group database
- * @group mssql
- */
-class Framework_DBMssql extends PHPUnit\Framework\TestCase
-{
-
- /**
- * Class constructor
- */
- function test_class()
- {
- $object = new rcube_db_mssql('test');
-
- $this->assertInstanceOf('rcube_db_mssql', $object, "Class constructor");
- }
-}
diff --git a/tests/Framework/DBOracle.php b/tests/Framework/DBOracle.php
deleted file mode 100644
index 8fff546e0..000000000
--- a/tests/Framework/DBOracle.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-/**
- * Test class to test rcube_db_oracle class
- *
- * @package Tests
- * @group database
- * @group oracle
- */
-class Framework_DBOracle extends PHPUnit\Framework\TestCase
-{
-
- /**
- * Class constructor
- */
- function test_class()
- {
- $object = new rcube_db_oracle('test');
-
- $this->assertInstanceOf('rcube_db_oracle', $object, "Class constructor");
- }
-}
diff --git a/tests/Framework/DBSqlsrv.php b/tests/Framework/DBSqlsrv.php
deleted file mode 100644
index 6af3f107a..000000000
--- a/tests/Framework/DBSqlsrv.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-/**
- * Test class to test rcube_db_sqlsrv class
- *
- * @package Tests
- * @group database
- * @group sqlsrv
- */
-class Framework_DBSqlsrv extends PHPUnit\Framework\TestCase
-{
-
- /**
- * Class constructor
- */
- function test_class()
- {
- $object = new rcube_db_sqlsrv('test');
-
- $this->assertInstanceOf('rcube_db_sqlsrv', $object, "Class constructor");
- }
-}