mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 23:39:18 +00:00
32 lines
998 B
Java
32 lines
998 B
Java
package stepdefs;
|
|
|
|
import io.cucumber.java.en.Given;
|
|
import io.cucumber.java.en.Then;
|
|
import io.cucumber.java.en.When;
|
|
|
|
public class ManageVendor {
|
|
@Given("^the user is logged in as vendor manager$")
|
|
public void the_user_is_logged_in_as_vendor_manager() throws Exception {
|
|
}
|
|
|
|
@When("^the user opens the shop managing page$")
|
|
public void the_user_opens_the_shop_managing_page() throws Exception {
|
|
}
|
|
|
|
@When("^the user clicks on deactivate a listing$")
|
|
public void the_user_clicks_on_deactivate_a_listing() throws Exception {
|
|
}
|
|
|
|
@Then("^the listing should be deactivated$")
|
|
public void the_listing_should_be_deactivated() throws Exception {
|
|
}
|
|
|
|
@When("^the user clicks on deactivate the shop$")
|
|
public void the_user_clicks_on_deactivate_the_shop() throws Exception {
|
|
}
|
|
|
|
@Then("^the shop and all related listings should be deactivated$")
|
|
public void the_shop_and_all_related_listings_should_be_deactivated() throws Exception {
|
|
}
|
|
}
|