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
+10
View File
@@ -0,0 +1,10 @@
package oving5.card;
public class Card {
Card(char suit, int card) {
}
char getSuit() {
return 'A';
}
}