BAEL-6729 Add example code for mocking one method with multiple parameters

This commit is contained in:
Sam Gardner
2023-09-05 19:18:56 +01:00
parent 63033cd8cf
commit 4c7bc8d19a
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;
}
}