de.otto.edison.testsupport.dsl.Given Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edison-testsupport Show documentation
Show all versions of edison-testsupport Show documentation
Test support for Edison Microservices.
package de.otto.edison.testsupport.dsl;
public class Given {
public static final Given INSTANCE = new Given();
public static void given(final Given... givenStuff) {}
public static Given and(final Given givenStuff, final Given... moreGivenStuff) { return INSTANCE; }
}