mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
248 B
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";
|
|
}
|
|
}
|