maven compiles all tests independetly of which tests are run

This commit is contained in:
2026-03-03 01:02:23 +01:00
parent f2db063e5c
commit 86a691b044
76 changed files with 321 additions and 38 deletions

View File

@@ -0,0 +1,12 @@
package oving5.ticket;
import java.time.LocalDateTime;
public class PeriodTicket {
PeriodTicket(LocalDateTime start, LocalDateTime end) {
}
public boolean scan() {
return false;
}
}

View File

@@ -0,0 +1,6 @@
package oving5.ticket;
public class SingleTicket {
SingleTicket() {
}
}