added code snippets for bael-4554 (#9979)

This commit is contained in:
fanatixan
2020-09-07 04:13:25 +02:00
committed by GitHub
parent 1927bb1b46
commit 74efd2530e
3 changed files with 106 additions and 0 deletions
@@ -0,0 +1,11 @@
package com.baeldung.mockito.whenvsdomethods;
import java.time.DayOfWeek;
public interface Employee {
String greet();
void work(DayOfWeek day);
}
@@ -0,0 +1,5 @@
package com.baeldung.mockito.whenvsdomethods;
public class IAmOnHolidayException extends RuntimeException {
}