mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
15 lines
288 B
Plaintext
15 lines
288 B
Plaintext
@import <AppKit/CPImage.j>
|
|
|
|
@implementation CPImageTest : OJTestCase
|
|
{
|
|
}
|
|
|
|
- (void)testInitWithContentsOfFile_nil
|
|
{
|
|
var image = [[CPImage alloc] initWithContentsOfFile:nil];
|
|
|
|
[self assert:nil equals:image message:@"- CPImage initWithContentsOfFile:nil should return nil"];
|
|
}
|
|
|
|
@end
|