play.test.Helpers.stop()

Here are the examples of the java api play.test.Helpers.stop() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

18 Source : WithPostgresContainer.java
with Apache License 2.0
from seattle-uat

@AfterClreplaced
public static void stopPlay() {
    if (app != null) {
        Helpers.stop(app);
        app = null;
    }
}