mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-28 11:10:51 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33927 72102866-910b-0410-8b05-ffd578937521
17 lines
415 B
Objective-C
17 lines
415 B
Objective-C
#import "ObjectTesting.h"
|
|
#import <Foundation/NSAutoreleasePool.h>
|
|
#import <Foundation/NSXMLNode.h>
|
|
int main()
|
|
{
|
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
|
NSXMLNode *node;
|
|
|
|
node = [[NSXMLNode alloc] initWithKind: NSXMLInvalidKind];
|
|
test_alloc(@"NSXMLNode");
|
|
test_NSObject(@"NSXMLNode", [NSArray arrayWithObject: node]);
|
|
[arp release];
|
|
arp = nil;
|
|
|
|
[node release];
|
|
return 0;
|
|
}
|