30 lines
495 B
Java
Raw Normal View History

2020-10-14 13:59:30 +02:00
package TD4.flights;
import static org.junit.Assert.*;
import java.time.LocalDate;
import java.time.LocalTime;
import org.junit.Before;
import org.junit.Test;
public class FlightTest {
Flight f1 ;
@Before
public void setUp() {
f1 = new Flight(100, LocalDate.of(2017,11,11), LocalTime.of(7, 45),"Nice","Paris");
}
@Test
public void testGetPrice() {
assertEquals(100,f1.getPrice(),0);
f1.setPrice(-1);
assertTrue(f1.getPrice()>=10);
assertTrue(f1.getPrice()<=1000);
}
}