mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 18:21:04 +00:00
18 lines
380 B
Mathematica
18 lines
380 B
Mathematica
|
#import "ObjectTesting.h"
|
||
|
#import <Foundation/NSAutoreleasePool.h>
|
||
|
#import <Foundation/NSXMLNode.h>
|
||
|
int main()
|
||
|
{
|
||
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
||
|
NSXMLNode *node;
|
||
|
|
||
|
node = [NSXMLNode new];
|
||
|
test_alloc(@"NSXMLNode");
|
||
|
test_NSObject(@"NSXMLNode", [NSArray arrayWithObject: node]);
|
||
|
[arp release];
|
||
|
arp = nil;
|
||
|
|
||
|
[node release];
|
||
|
return 0;
|
||
|
}
|