Java: port java/mocking-all-non-private-methods-means-unit-test-is-too-big query

This commit is contained in:
Napalys Klicius
2025-08-11 10:36:02 +02:00
parent 9905cd6436
commit 50c7160819
27 changed files with 1325 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
/**
* Underlying data type of the ORM class and functions.
*/
public class Employee {
Employee(String name) {
this.name = name;
}
String name;
}