51 lines
706 B
Java
51 lines
706 B
Java
package model;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
class OrderTest {
|
|
|
|
@Test
|
|
void getCustomer() {
|
|
}
|
|
|
|
@Test
|
|
void setCustomer() {
|
|
}
|
|
|
|
@Test
|
|
void getPizzas() {
|
|
}
|
|
|
|
@Test
|
|
void setPizzas() {
|
|
}
|
|
|
|
/**
|
|
* Tests if the exception is thrown when order is not in {@link model.Order.OrderState#IN_PROGRESS}
|
|
*/
|
|
@Test
|
|
void addPizzaAfterCompletion() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Tests if the pizza is added to the pizza List.
|
|
*/
|
|
@Test
|
|
void addPizzaBeforCompletion() {
|
|
}
|
|
|
|
@Test
|
|
void setOrderState() {
|
|
}
|
|
|
|
@Test
|
|
void getDate() {
|
|
}
|
|
|
|
@Test
|
|
void setDate() {
|
|
}
|
|
}
|