mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 13:07:02 +00:00
19 lines
361 B
Plaintext
19 lines
361 B
Plaintext
|
|
@import <AppKit/CPWindow.j>
|
|
|
|
[CPApplication sharedApplication]
|
|
|
|
@implementation CPWindowTest : OJTestCase
|
|
{
|
|
CPWindow theWindow;
|
|
}
|
|
|
|
-(void)testCanAllocWindow
|
|
{
|
|
theWindow = [[CPWindow alloc] initWithContentRect:CGRectMake(0,0,200,150)
|
|
styleMask:CPWindowNotSizable];
|
|
|
|
[self assertTrue:!!theWindow];
|
|
}
|
|
|
|
@end |