Package com.indeed.proctor.common.model

Examples of com.indeed.proctor.common.model.TestType


            @Nonnull final FunctionMapper functionMapper,
            final ProvidedContext providedContext
    ) throws IncompatibleTestMatrixException {
        final List<Allocation> allocations = testDefinition.getAllocations();

        final TestType declaredType = testDefinition.getTestType();
        if (!TestType.all().contains(declaredType)) {
            throw new IncompatibleTestMatrixException(String.format(
                    "Test '%s' is included in the application specification but refers to unknown id type '%s'.",
                    testName, declaredType));
        }
View Full Code Here

TOP

Related Classes of com.indeed.proctor.common.model.TestType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.