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,28 @@
package oving5.named;
public class Person2 {
Person2(String s) {
}
public void setFullName(String s) {
}
public void setFamilyName(String s) {
}
public void setGivenName(String s) {
}
public String getFullName() {
return "";
}
public String getFamilyName() {
return "";
}
public String getGivenName() {
return "";
}
}