package shop.steps;

import org.jbehave.core.annotations.Then;
import org.jbehave.core.annotations.When;

public class OderSteps {
    
    @When("a customer orders $quantity T-Shirts")
    public void whenCustomerOrders(int quantity) {
    }

    @Then("the discount is $discount percent")
    public void thenDiscountIs(double discount) {
    }

    @Then("the price for one T-Shirt is $price Euro")
    public void thenPricePerTeeIs(double price) {
    }

}
