libs-base/Tests/base/NSTimeZone/basic.m

15 lines
280 B
Mathematica
Raw Normal View History

#import "ObjectTesting.h"
#import <Foundation/NSAutoreleasePool.h>
#import <Foundation/NSTimeZone.h>
int main()
{
2024-11-17 21:41:43 +00:00
ENTER_POOL
NSTimeZone *testObj = [NSTimeZone defaultTimeZone];
2024-11-17 21:41:43 +00:00
test_NSObject(@"NSTimeZone", [NSArray arrayWithObject: testObj]);
2024-11-17 21:41:43 +00:00
LEAVE_POOL
return 0;
}