mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-09 15:50:59 +00:00
28 lines
955 B
Objective-C
28 lines
955 B
Objective-C
#import <Foundation/NSArchiver.h>
|
|
#import <Foundation/NSException.h>
|
|
#import <Foundation/NSAutoreleasePool.h>
|
|
#import <Foundation/NSData.h>
|
|
#import "Testing.h"
|
|
#import "ObjectTesting.h"
|
|
|
|
int main()
|
|
{
|
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
|
id obj = [NSArchiver new];
|
|
NSMutableData *data1;
|
|
|
|
PASS((obj != nil && [obj isKindOfClass:[NSArchiver class]] &&
|
|
[obj archiverData] != nil), "+new creates an empty NSArchiver");
|
|
[obj release];
|
|
data1 = [NSMutableData dataWithLength: 0];
|
|
obj = AUTORELEASE([[NSArchiver alloc] initForWritingWithMutableData: data1]);
|
|
PASS((obj != nil && [obj isKindOfClass: [NSArchiver class]]
|
|
&& data1 == [obj archiverData]), "-initForWritingWithMutableData seems ok");
|
|
|
|
PASS_EXCEPTION([[NSUnarchiver alloc] initForReadingWithData:nil];,
|
|
@"NSInvalidArgumentException",
|
|
"Creating an NSUnarchiver with nil data throws an exception");
|
|
|
|
[arp release]; arp = nil;
|
|
return 0;
|
|
}
|