In the implementation file (.mm) I have a function that calls different APIs depending on the value of a boolean isTrue
which is set in other APIs
@implementation Controller
-(void) setProperty:(Id)Id value:(NSObject*)value
{
if(value) {
if(self.isTrue) {
[self function1]
} else {
[self function2]
}
}
}
Now I need to write a test where for different values of isTrue, I need to test if the correct function is being called.
I wrote something like:
-(void) testCaseforProperty
{
_controller.isTrue = true;
_controller setProperty:0 value:@YES];
// I need to check if function1 is called here
}
Can anyone please tell me how to write a test here in place of the comment in order to test that function1 is called here either with OCMock or XCTest or any other way?
Use a protocol
Your object being tested could look like this:
You would use a mock to check whether a function gets called
The test could look like this: