summaryrefslogtreecommitdiff
path: root/plugins/debug_logger/tests/DebugLogger.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/debug_logger/tests/DebugLogger.php')
-rw-r--r--plugins/debug_logger/tests/DebugLogger.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/plugins/debug_logger/tests/DebugLogger.php b/plugins/debug_logger/tests/DebugLogger.php
deleted file mode 100644
index 8dd0c03fe..000000000
--- a/plugins/debug_logger/tests/DebugLogger.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-class DebugLogger_Plugin extends PHPUnit_Framework_TestCase
-{
-
- function setUp()
- {
- include_once __DIR__ . '/../debug_logger.php';
- }
-
- /**
- * Plugin object construction test
- */
- function test_constructor()
- {
- $rcube = rcube::get_instance();
- $plugin = new debug_logger($rcube->api);
-
- $this->assertInstanceOf('debug_logger', $plugin);
- $this->assertInstanceOf('rcube_plugin', $plugin);
- }
-}
-