libs-gui/Tests/gui/NSPrintInfo/sharedPrintInfo.m
Richard Frith-MacDonald 251b1edd94 Import testsuite
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@32225 72102866-910b-0410-8b05-ffd578937521
2011-02-19 16:57:57 +00:00

18 lines
319 B
Objective-C

/*
copyright 2004 Alexander Malmberg <alexander@malmberg.org>
*/
#include <Foundation/NSAutoreleasePool.h>
#include <AppKit/NSPrintInfo.h>
int main(int argc, char **argv)
{
CREATE_AUTORELEASE_POOL(arp);
/* Should run without causing any exceptions. */
[NSPrintInfo sharedPrintInfo];
DESTROY(arp);
return 0;
}