|
|
@ -4,8 +4,7 @@ import org.junit.jupiter.api.Test; |
|
|
|
|
|
|
|
import java.sql.Time; |
|
|
|
|
|
|
|
import static hs.fulda.de.ci.exam.project.FlightStatus.Arrived; |
|
|
|
import static hs.fulda.de.ci.exam.project.FlightStatus.InAir; |
|
|
|
import static hs.fulda.de.ci.exam.project.FlightStatus.*; |
|
|
|
import static org.assertj.core.api.Assertions.*; |
|
|
|
|
|
|
|
class FlightInstanceTest { |
|
|
@ -33,4 +32,10 @@ class FlightInstanceTest { |
|
|
|
assertThat(fInstance1.getStatus()).describedAs("get status of flight isntance").isEqualTo(Arrived); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
void cancel_FlightInstance() { |
|
|
|
// TODO: 26.01.22 discuss |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |