Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/test/unit/mock_notification_helper.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/system/test/unit/mock_notification_helper.js')
-rw-r--r--apps/system/test/unit/mock_notification_helper.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/apps/system/test/unit/mock_notification_helper.js b/apps/system/test/unit/mock_notification_helper.js
deleted file mode 100644
index adb80f9..0000000
--- a/apps/system/test/unit/mock_notification_helper.js
+++ /dev/null
@@ -1,22 +0,0 @@
-var MockNotificationHelper = {
- send: function(title, body, icon, clickCB, closeCB) {
- this.mTitle = title;
- this.mBody = body;
- this.mIcon = icon;
- this.mClickCB = clickCB;
- this.mCloseCB = closeCB;
- },
-
- mTitle: null,
- mBody: null,
- mIcon: null,
- mClickCB: null,
- mCloseCB: null,
- mTeardown: function teardown() {
- this.mTitle = null;
- this.mBody = null;
- this.mIcon = null;
- this.mClickCB = null;
- this.mCloseCB = null;
- }
-};