Import testsuite

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@32225 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2011-02-19 16:57:57 +00:00
parent 03bc4d79d6
commit 251b1edd94
23 changed files with 1991 additions and 0 deletions

View file

@ -0,0 +1,60 @@
/*
copyright 2004 Alexander Malmberg <alexander@malmberg.org>
*/
#include "Testing.h"
#include <math.h>
#include <Foundation/NSAutoreleasePool.h>
#include <AppKit/NSApplication.h>
#include <AppKit/NSView.h>
#include <AppKit/NSWindow.h>
int main(int argc, char **argv)
{
CREATE_AUTORELEASE_POOL(arp);
NSWindow *window;
NSView *view;
int passed;
[NSApplication sharedApplication];
window=[[NSWindow alloc] init];
view=[[NSView alloc] init];
[[window contentView] addSubview: view];
#define CHECK(f) \
if (fabs(f-[view frameRotation])>0.0001 \
&& fabs(f-[view frameRotation]-360.0)>0.0001 \
&& fabs(f-[view frameRotation]+360.0)>0.0001) \
{ \
passed=0; \
printf("expected rotation %30.25f, got %30.25f\n",f,[view frameRotation]); \
}
passed=1;
CHECK(0.0)
[view setFrameRotation: 45.0];
CHECK(45.0)
[view setFrameRotation: 0.0];
CHECK(0.0)
[view setFrameRotation: 90.0];
CHECK(90.0)
[view setFrameRotation: 180.0];
CHECK(180.0)
[view setFrameRotation: 360.0];
CHECK(0.0)
[view setFrameRotation: 0.0];
CHECK(0.0)
[view setFrameRotation: -45.0];
CHECK(315.0)
[view setFrameRotation: 0.0];
CHECK(0.0)
pass(passed,"-frameRotation/-setFrameRotation work");
DESTROY(arp);
return 0;
}