Files
codeql/java/ql/test/query-tests/ExcessivePublicMethodMocking/EmployeeStatus.java

10 lines
248 B
Java

/**
* Simple class with a single public method to test the edge case.
* When this single method is mocked, it means ALL public methods are mocked.
*/
public class EmployeeStatus {
public String getStatus() {
return "active";
}
}