Differences From Artifact [3c3d45f200]:
- File
src/test/OTTestCase.m
— part of check-in
[10f006be37]
at
2024-02-05 20:42:09
on branch objfwtest
— Add ObjFWTest
So far, it only discovers all tests and runs them and doesn't do much
else. (user: js, size: 651) [annotate] [blame] [check-ins using] [more...]
To Artifact [fdb0a500c1]:
- File src/test/OTTestCase.m — part of check-in [6ae7f7cdbf] at 2024-02-12 22:35:47 on branch objfwtest — Migrate OFSystemInfoTests to ObjFWTest (user: js, size: 738) [annotate] [blame] [check-ins using] [more...]
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | + + + + + |
*/
#include "config.h"
#import "OTTestCase.h"
@implementation OTTestCase: OFObject
+ (OFArray OF_GENERIC(OFPair OF_GENERIC(OFString *, id) *) *)summary
{
return nil;
}
- (void)setUp
{
}
- (void)tearDown
{
}
@end
|