Skip to content
Snippets Groups Projects
TestQuoter.java 421 B
Newer Older
andreea's avatar
andreea committed
package nl.utwente.di.bookQuote;

import nl.utwente.di.bookQuote.Quoter;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

/*** Tests the Quoter*/
public class TestQuoter {
    @Test
    public void testBook1() throws Exception{
        Quoter quoter = new Quoter();
        double price = quoter.getBookPrice("1");
        Assertions.assertEquals(10.0, price, 0.0, "Price of book 1");
    }
}