summaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java/com/vaadin/tests/CurrentTimeMillis.java
blob: 8808cd0d6e80668c358dae4675b1502d358db8b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.vaadin.tests;

import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractReindeerTestUI;

/**
 * Test UI (empty) to check high resolution time availability in browser.
 *
 * @author Vaadin Ltd
 */
public class CurrentTimeMillis extends AbstractReindeerTestUI {

    @Override
    protected void setup(VaadinRequest request) {
        // no need to add anything
    }

    @Override
    protected Integer getTicketNumber() {
        return 14716;
    }

    @Override
    protected String getTestDescription() {
        return "Use high precision time is available instead of Date.getTime().";
    }
}