mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 17:40:56 +00:00
25 lines
546 B
Mathematica
25 lines
546 B
Mathematica
|
/*
|
||
|
copyright 2004 Alexander Malmberg <alexander@malmberg.org>
|
||
|
*/
|
||
|
|
||
|
#include "Testing.h"
|
||
|
|
||
|
#include <Foundation/NSAutoreleasePool.h>
|
||
|
#include <AppKit/NSParagraphStyle.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
int ok;
|
||
|
|
||
|
CREATE_AUTORELEASE_POOL(arp);
|
||
|
|
||
|
ok = [NSParagraphStyle defaultWritingDirectionForLanguage: @"en"]==NSWritingDirectionLeftToRight
|
||
|
&& [NSParagraphStyle defaultWritingDirectionForLanguage: @"ar"]==NSWritingDirectionRightToLeft;
|
||
|
|
||
|
pass(ok,"[NSParagraphStyle defaultWritingDirectionForLanguage:] works");
|
||
|
|
||
|
DESTROY(arp);
|
||
|
return 0;
|
||
|
}
|
||
|
|