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

io.quarkus.dev.testing.results.TestClassResultInterface Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
package io.quarkus.dev.testing.results;

import java.util.List;

public interface TestClassResultInterface extends Comparable {

    String getClassName();

    List getResults();

    @Override
    default int compareTo(TestClassResultInterface o) {
        return getClassName().compareTo(o.getClassName());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy