Changeset 22796
- Timestamp:
- 03/04/2008 07:41:58 AM (9 months ago)
- Files:
-
- trunk/UnitTests/TestColorAdditions.h (modified) (1 diff)
- trunk/UnitTests/TestColorAdditions.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/UnitTests/TestColorAdditions.h
r22793 r22796 140 140 - (void)testRepresentedColorWithTwoCommas; 141 141 - (void)testRepresentedColorWithThreeCommas; 142 - (void)testRepresentedColorWithFourCommas; 142 143 143 144 #pragma mark -representedColorWithAlpha: trunk/UnitTests/TestColorAdditions.m
r22793 r22796 725 725 STAssertEquals(noColor, (NSColor *)nil, @"Color represented by three commas should be nil"); 726 726 } 727 - (void)testRepresentedColorWithFourCommas 728 { 729 NSColor *noColor = [@",,,," representedColor]; 730 STAssertEquals(noColor, (NSColor *)nil, @"Color represented by four commas should be nil"); 731 } 727 732 728 733 #pragma mark -representedColorWithAlpha: