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

fi.jumi.api.RunVia Maven / Gradle / Ivy

There is a newer version: 0.5.437
Show newest version
// Copyright © 2011-2012, Esko Luontola 
// This software is released under the Apache License 2.0.
// The license text is at http://www.apache.org/licenses/LICENSE-2.0

package fi.jumi.api;

import fi.jumi.api.drivers.Driver;

import java.lang.annotation.*;

/**
 * Marks a class as a test and tells that which {@link Driver} to use for running the test.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface RunVia {

    Class value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy