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

org.evosuite.junit.naming.methods.GoalComparator Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (C) 2010-2018 Gordon Fraser, Andrea Arcuri and EvoSuite
 * contributors
 *
 * This file is part of EvoSuite.
 *
 * EvoSuite is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation, either version 3.0 of the License, or
 * (at your option) any later version.
 *
 * EvoSuite is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with EvoSuite. If not, see .
 */
package org.evosuite.junit.naming.methods;

import org.evosuite.coverage.exception.ExceptionCoverageTestFitness;
import org.evosuite.coverage.io.input.InputCoverageTestFitness;
import org.evosuite.coverage.method.MethodCoverageTestFitness;
import org.evosuite.coverage.method.MethodNoExceptionCoverageTestFitness;
import org.evosuite.coverage.io.output.OutputCoverageTestFitness;
import org.evosuite.testcase.TestFitnessFunction;

import java.util.Comparator;

/**
 * Created by gordon on 22/12/2015.
 */
public class GoalComparator implements Comparator {

    // 1. MethodGoal
    // 2. Interface
    // 3. Exception
    // 4. Output
    // 5. Input
    // 6. Assertion

    @Override
    public int compare(TestFitnessFunction o1, TestFitnessFunction o2) {
        Class c1 = o1.getClass();
        Class c2 = o2.getClass();
        if(c1.equals(c2))
            return o1.compareTo(o2);

        if(c1.equals(ExceptionCoverageTestFitness.class))
            return -1;
        else if(c2.equals(ExceptionCoverageTestFitness.class))
            return 1;

        if(c1.equals(MethodCoverageTestFitness.class))
            return -1;
        else if(c2.equals(MethodCoverageTestFitness.class))
            return 1;

        if(c1.equals(MethodNoExceptionCoverageTestFitness.class))
            return -1;
        else if(c2.equals(MethodNoExceptionCoverageTestFitness.class))
            return 1;

        if(c1.equals(OutputCoverageTestFitness.class))
            return -1;
        else if(c2.equals(OutputCoverageTestFitness.class))
            return 1;

        if(c1.equals(InputCoverageTestFitness.class))
            return -1;
        else if(c2.equals(InputCoverageTestFitness.class))
            return 1;

        // TODO: Assertion

        return 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy