private Event()

in src/main/java/com/microsoft/appcenter/event/Event.java [7:23]


    private Event(String id, EventType type, String testName, String className, String parameters) {
        if (null == id || id.length() < 1) {
            throw new IllegalArgumentException("id must be a non-empty string");
        }
        if (null == testName || testName.length() < 1) {
            throw new IllegalArgumentException("testName must be a non-empty string");
        }
        if (null == className || className.length() < 1) {
            throw new IllegalArgumentException("className must be a non-empty string");
        }
        this.id = id;
        this.type = type;
        this.testName = testName;
        this.className = className;
        this.parameters = parameters;
        this.timestamp = System.currentTimeMillis() / 1000.0;
    }