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

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

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");
    }
}