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

io.mstream.trader.commons.test.cucumber.CachingStepdefs Maven / Gradle / Ivy

package io.mstream.trader.commons.test.cucumber;


import cucumber.api.java.en.Given;

import static io.restassured.RestAssured.when;


public class CachingStepdefs {
    
    @Given("^Service caches are empty$")
    public void the_service_caches_are_ampty()
            throws Throwable {
        
        when()
                .delete("/admin/caches")
                .then()
                .statusCode(204);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy