mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
56 lines
1.5 KiB
Mathematica
56 lines
1.5 KiB
Mathematica
|
#import "Testing.h"
|
||
|
#import <Foundation/NSAutoreleasePool.h>
|
||
|
#import <Foundation/NSObject.h>
|
||
|
/* Nicola Pero, Tue Dec 18 17:54:53 GMT 2001 */
|
||
|
@protocol DoingNothing
|
||
|
- (void) doNothing;
|
||
|
@end
|
||
|
|
||
|
@protocol DoingNothingCategory
|
||
|
- (void) doNothingCategory;
|
||
|
@end
|
||
|
|
||
|
|
||
|
@interface NicolaTest : NSObject <DoingNothing>
|
||
|
{
|
||
|
}
|
||
|
@end
|
||
|
|
||
|
@implementation NicolaTest
|
||
|
- (void) doNothing
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
@end
|
||
|
|
||
|
@interface NicolaTest (Category) <DoingNothingCategory>
|
||
|
@end
|
||
|
|
||
|
@implementation NicolaTest (Category)
|
||
|
- (void) doNothingCategory
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
@end
|
||
|
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
||
|
PASS([NicolaTest conformsToProtocol:@protocol(DoingNothing)],
|
||
|
"+conformsToProtocol returns YES on an implemented protocol");
|
||
|
PASS([NicolaTest conformsToProtocol:@protocol(DoingNothingCategory)],
|
||
|
"+conformsToProtocol returns YES on a protocol implemented in a category");
|
||
|
PASS(![NicolaTest conformsToProtocol:@protocol(NSCoding)],
|
||
|
"+conformsToProtocol returns NO on an unimplemented protocol");
|
||
|
PASS([[NicolaTest new] conformsToProtocol:@protocol(DoingNothing)],
|
||
|
"-conformsToProtocol returns YES on an implemented protocol");
|
||
|
PASS([[NicolaTest new] conformsToProtocol:@protocol(DoingNothingCategory)],
|
||
|
"-conformsToProtocol returns YES on a protocol implemented in a category");
|
||
|
PASS(![[NicolaTest new] conformsToProtocol:@protocol(NSCoding)],
|
||
|
"-conformsToProtocol returns NO on an unimplemented protocol");
|
||
|
|
||
|
[arp release]; arp = nil;
|
||
|
return 0;
|
||
|
}
|