I have a method with this signature:
public static void foo(int x, int y)
{
//do something...
}
I want to verify that this method was called exactly 2 times when x = 5 and y = 10. How can I do that using Typemock?
I have a method with this signature:
public static void foo(int x, int y)
{
//do something...
}
I want to verify that this method was called exactly 2 times when x = 5 and y = 10. How can I do that using Typemock?
Copyright © 2021 Jogjafile Inc.
I gave this a go and came up with the following:
Given the class:
Your test would then look like this: