summaryrefslogtreecommitdiffstats
path: root/library/Eventdb/Test/PseudoMonitoringBackend.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--library/Eventdb/Test/PseudoMonitoringBackend.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/library/Eventdb/Test/PseudoMonitoringBackend.php b/library/Eventdb/Test/PseudoMonitoringBackend.php
new file mode 100644
index 0000000..3ad6de5
--- /dev/null
+++ b/library/Eventdb/Test/PseudoMonitoringBackend.php
@@ -0,0 +1,14 @@
+<?php
+
+namespace Icinga\Module\Eventdb\Test;
+
+use Icinga\Data\ConfigObject;
+use Icinga\Module\Monitoring\Backend\MonitoringBackend;
+
+class PseudoMonitoringBackend extends MonitoringBackend
+{
+ public static function dummy()
+ {
+ return new static('dummy', new ConfigObject());
+ }
+}