Skip to content
Snippets Groups Projects
Commit 9f32ea36 authored by HSoreide's avatar HSoreide
Browse files

Implement Item class with unit tests and Category enum

parent 275dea65
No related branches found
No related tags found
1 merge request!1Hs item class
package no.ntnu.idatt1002.demo.data;
public enum Category {
FOOD,
CLOTHES,
OTHER,
}
package no.ntnu.idatt1002.demo.data;
public class Item {
private Category category;
private String description = "";
private float price;
public Item (Category category, String description, float price){
if(category == null || price <= 1.0f) {
throw new IllegalArgumentException("The item must have a category and a price.");
} else {
this.category = category;
this.price = price;
this.description = description;
}
}
public Category getCategory() {
return category;
}
public void setCategory(Category category) {
this.category = category;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public float getPrice() {
return price;
}
public void setPrice(float price) {
this.price = price;
}
/* @Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (obj.getClass() != this.getClass()) {
return false;
}
final Item otherItem = (Item) obj;
return true;
*//*return Objects.equals(true);*//*
}*/
}
package no.ntnu.idatt1002.demo.data;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class ItemTest {
@Test
@DisplayName("The Item constructor throws exceptions when it should.")
void constructorThrows(){
Exception noCategory = assertThrows(IllegalArgumentException.class, () -> new Item(null, "description", 89.9f));
assertEquals("The item must have a category and a price.", noCategory.getMessage());
Exception noPrice = assertThrows(IllegalArgumentException.class, () -> new Item(Category.OTHER, "description", 0f));
assertEquals("The item must have a category and a price.", noPrice.getMessage());
};
@Test
@DisplayName("The Item constructor does not throw exceptions when it should not.")
void constructorDoesThrow() {
assertDoesNotThrow(() -> new Item(Category.OTHER, "descriotion", 59.9f));
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment