mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-08 07:20:48 +00:00
24 lines
710 B
Objective-C
24 lines
710 B
Objective-C
#import "ObjectTesting.h"
|
|
#import <Foundation/NSData.h>
|
|
#import <Foundation/NSAutoreleasePool.h>
|
|
|
|
int main()
|
|
{
|
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
|
id testObject = AUTORELEASE([NSData new]);
|
|
|
|
test_alloc(@"NSData");
|
|
test_NSObject(@"NSData", [NSArray arrayWithObject: testObject]);
|
|
test_NSCoding([NSArray arrayWithObject: testObject]);
|
|
test_keyed_NSCoding([NSArray arrayWithObject: testObject]);
|
|
test_NSCopying(@"NSData",
|
|
@"NSMutableData",
|
|
[NSArray arrayWithObject: testObject], NO, NO);
|
|
test_NSMutableCopying(@"NSData",
|
|
@"NSMutableData",
|
|
[NSArray arrayWithObject: testObject]);
|
|
|
|
[arp release]; arp = nil;
|
|
return 0;
|
|
}
|
|
|