mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-29 15:07:04 +00:00
16 lines
235 B
Plaintext
16 lines
235 B
Plaintext
|
|
@import <AppKit/CPButton.j>
|
|
@import <AppKit/CPStringDrawing.j>
|
|
|
|
@implementation CPButtonTest : OJTestCase
|
|
{
|
|
}
|
|
|
|
- (void)testCanCreate
|
|
{
|
|
var button = [CPButton buttonWithTitle:"hello world"];
|
|
[self assertTrue:!!button];
|
|
}
|
|
|
|
@end
|