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

net.serenitybdd.screenplay.facts.Fact Maven / Gradle / Ivy

There is a newer version: 4.2.9
Show newest version
package net.serenitybdd.screenplay.facts;

import net.serenitybdd.screenplay.Actor;

/**
 * A Fact is a way of declaring details about an actor.
 * This can be used to setup or teardown test data for the actor.
 */
public interface Fact {

    void setup(Actor actor);

    default void teardown(Actor actor) {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy