আমার কাছে একটি কমান্ড লাইন সরঞ্জাম রয়েছে যা একটি ডিএনএস চেক করে। যদি ডিএনএস চেক সফল হয়, কমান্ডটি আরও কাজ করে এগিয়ে যায়। আমি মকিতো ব্যবহার করে এর জন্য ইউনিট পরীক্ষা লেখার চেষ্টা করছি। আমার কোডটি এখানে:
public class Command() {
// ....
void runCommand() {
// ..
dnsCheck(hostname, new InetAddressFactory());
// ..
// do other stuff after dnsCheck
}
void dnsCheck(String hostname, InetAddressFactory factory) {
// calls to verify hostname
}
}
আমি InetAddress
ক্লাসের একটি স্থিতিশীল বাস্তবায়নকে উপহাস করার জন্য ইনটএড্রেসফ্যাক্টরি ব্যবহার করছি । কারখানার কোড এখানে:
public class InetAddressFactory {
public InetAddress getByName(String host) throws UnknownHostException {
return InetAddress.getByName(host);
}
}
এখানে আমার ইউনিট পরীক্ষার কেস:
@RunWith(MockitoJUnitRunner.class)
public class CmdTest {
// many functional tests for dnsCheck
// here's the piece of code that is failing
// in this test I want to test the rest of the code (i.e. after dnsCheck)
@Test
void testPostDnsCheck() {
final Cmd cmd = spy(new Cmd());
// this line does not work, and it throws the exception below:
// tried using (InetAddressFactory) anyObject()
doNothing().when(cmd).dnsCheck(HOST, any(InetAddressFactory.class));
cmd.runCommand();
}
}
চলমান testPostDnsCheck()
পরীক্ষা ব্যতিক্রম :
org.mockito.exceptions.misusing.InvalidUseOfMatchersException:
Invalid use of argument matchers!
2 matchers expected, 1 recorded.
This exception may occur if matchers are combined with raw values:
//incorrect:
someMethod(anyObject(), "raw String");
When using matchers, all arguments have to be provided by matchers.
For example:
//correct:
someMethod(anyObject(), eq("String by matcher"));
এটি সমাধান করার জন্য কোনও ইনপুট?