Differences From Artifact [860bceb260]:
- File new_tests/OFInvocationTests.m — part of check-in [34e6ff9e0b] at 2024-02-11 15:32:15 on branch objfwtest — Migrate OFInvocationTests to ObjFWTest (user: js, size: 2672) [annotate] [blame] [check-ins using]
To Artifact [11b71f5c4f]:
- File new_tests/OFInvocationTests.m — part of check-in [7272d5b2cd] at 2024-02-11 20:49:41 on branch objfwtest — Migrate OFArrayTests to ObjFWTest (user: js, size: 2689) [annotate] [blame] [check-ins using] [more...]
- File tests/OFInvocationTests.m — part of check-in [7a84580fb6] at 2024-02-18 19:29:26 on branch objfwtest — Rename new tests (user: js, size: 2689) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
: (struct TestStruct)testStruct
{
return testStruct;
}
- (void)setUp
{
SEL selector = @selector(invocationTestMethod1::::);
OFMethodSignature *signature =
[self methodSignatureForSelector: selector];
_invocation = [[OFInvocation alloc] initWithMethodSignature: signature];
}
| > > | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
: (struct TestStruct)testStruct
{
return testStruct;
}
- (void)setUp
{
[super setUp];
SEL selector = @selector(invocationTestMethod1::::);
OFMethodSignature *signature =
[self methodSignatureForSelector: selector];
_invocation = [[OFInvocation alloc] initWithMethodSignature: signature];
}
|
| ︙ | ︙ |