Merge pull request #14721 from sam-gardner/BAEL-6729-mock-same-method-different-params

BAEL-6729 Add example code for mocking one method with multiple param…
This commit is contained in:
davidmartinezbarua
2023-09-08 14:17:23 -03:00
committed by GitHub
2 changed files with 70 additions and 0 deletions
@@ -0,0 +1,7 @@
package com.baeldung.onemethodmultipleparams;
public class ExampleService {
public int getValue(int arg) {
return 1;
}
}