Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/test/unit/mock_system_banner.js
blob: e40d26a28768e75a71a981124b08ba20fcd7800d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
var MockSystemBanner = {
  show: function(message) {
    this.mShowCount++;
    this.mMessage = message;
  },

  mShowCount: 0,
  mMessage: null,
  mTeardown: function teardown() {
    this.mShowCount = 0;
    this.mMessage = null;
  }
};