~webapps/unity-webapps-googlenews/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
function Test(browser) {
    this._init(browser);
}

Test.prototype = {
    _init: function (browser) {
        this._url = browser.getUrl();
        this._browser = browser;
        browser.open(this._url);
    },

    onLoad: function () {
        setTimeout(this._browser.finish.bind(this._browser), 10000);
    },

    validateCallLog: function (log) {
        assertEquals('Unity.init', log[0].func, 'Unity.init');
        assertEquals('Unity.addAction', log[1].func, 'Unity.addAction');
    },

    scriptName: 'GoogleNews.user.js'
};