All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.indeed.proctor.common.ProctorResultReporter Maven / Gradle / Ivy

The newest version!
package com.indeed.proctor.common;

import com.indeed.proctor.common.model.TestType;

import java.util.Map;

public interface ProctorResultReporter {
    default void reportMetrics(
            final ProctorResult result,
            final Map testTypesWithInvalidIdentifier) {
        reportTotalEvaluatedTests(result);
        reportFallbackTests(result);
        reportInvalidIdentifierTests(result, testTypesWithInvalidIdentifier);
    }

    void reportTotalEvaluatedTests(final ProctorResult result);

    void reportFallbackTests(final ProctorResult result);

    void reportInvalidIdentifierTests(
            final ProctorResult result,
            final Map testTypesWithInvalidIdentifier);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy