William Bowling is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

wbowling / adium (fork of adium / adium)

Fork of Adium for patches/improvements

Clone this repository (size: 338.7 MB): HTTPS / SSH
hg clone https://bitbucket.org/wbowling/adium
hg clone ssh://hg@bitbucket.org/wbowling/adium

adium / UnitTests / TestColorAdditions.m

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
//
//  TestColorAdditions.m
//  Adium
//
//  Created by Peter Hosey on 2008-03-01.
//  Copyright 2008 Peter Hosey. All rights reserved.
//

#import "TestColorAdditions.h"

#import <AIUtilities/AIColorAdditions.h>

//Test strings chosen by hand from output of dissociated-press on the Adium blog as of 2008-03-02.
#define TEST_STRING_1 @"We've fixes failure code IS want to videopletely unable to downly hope."
#define TEST_STRING_2 @"Adium hase. It's it wildbot. This a reality of Adium. You add both acheFly!"
#define TEST_STRING_3 @"We're proud to a misperception his blog. Now your patience, so include That means you!"
#define TEST_STRING_4 @"Great fort this is powerful numberted, but and thuse everyone has no way to a closedish, Russiate it!"
#define TEST_STRING_5 @"You capacith this by having testing: there's sting AV coming from other Skype?"
#define TEST_STRING_6 @"To can rience lawyers involvement in the most from the publicant progres is not running and tell you what we did pas alway or may not be submits IP. If the IP hunt down bugs will beta iterat yet."
#define TEST_STRING_7 @"What about stransfers, bettelephoo!"

@implementation TestColorAdditions

#pragma mark -equalToRGBColor:
- (void)testCompareEqualColors
{
	NSColor *colorA = [NSColor colorWithCalibratedRed:1.0 green:1.0 blue:1.0 alpha:1.0];
	NSColor *colorB = [NSColor colorWithCalibratedRed:1.0 green:1.0 blue:1.0 alpha:1.0];
	STAssertTrue([colorA equalToRGBColor:colorB], @"Two colors with equal R, G, B, and A must compare equal");
}
- (void)testCompareColorsInequalInRed
{
	NSColor *colorA = [NSColor colorWithCalibratedRed:1.0 green:1.0 blue:1.0 alpha:1.0];
	NSColor *colorB = [NSColor colorWithCalibratedRed:0.0 green:1.0 blue:1.0 alpha:1.0];
	//                                                ^ The difference
	STAssertFalse([colorA equalToRGBColor:colorB], @"Two colors with inequal R must compare equal");
}
- (void)testCompareColorsInequalInGreen
{
	NSColor *colorA = [NSColor colorWithCalibratedRed:1.0 green:1.0 blue:1.0 alpha:1.0];
	NSColor *colorB = [NSColor colorWithCalibratedRed:1.0 green:0.0 blue:1.0 alpha:1.0];
	//                                                          ^ The difference
	STAssertFalse([colorA equalToRGBColor:colorB], @"Two colors with inequal G must compare equal");
}
- (void)testCompareColorsInequalInBlue
{
	NSColor *colorA = [NSColor colorWithCalibratedRed:1.0 green:1.0 blue:1.0 alpha:1.0];
	NSColor *colorB = [NSColor colorWithCalibratedRed:1.0 green:1.0 blue:0.0 alpha:1.0];
	//                                                                   ^ The difference
	STAssertFalse([colorA equalToRGBColor:colorB], @"Two colors with inequal B must compare equal");
}
- (void)testCompareColorsInequalInAlpha
{
	NSColor *colorA = [NSColor colorWithCalibratedRed:1.0 green:1.0 blue:1.0 alpha:1.0];
	NSColor *colorB = [NSColor colorWithCalibratedRed:1.0 green:1.0 blue:1.0 alpha:0.0];
	//                                                                             ^ The difference
	STAssertFalse([colorA equalToRGBColor:colorB], @"Two colors with inequal A must compare equal");
}

#pragma mark -colorIsDark
- (void)testWhiteColorIsDark
{
	STAssertFalse([[NSColor whiteColor] colorIsDark], @"White is not dark");
}
- (void)testBlackColorIsDark
{
	STAssertTrue([[NSColor blackColor] colorIsDark], @"Black is dark");
}

#pragma mark -colorIsMedium
- (void)testWhiteColorIsMedium
{
	STAssertFalse([[NSColor whiteColor] colorIsMedium], @"White is not medium");
}
- (void)testGrayColorIsMedium
{
	STAssertTrue([[NSColor grayColor] colorIsMedium], @"Gray is medium");
}
- (void)testBlackColorIsMedium
{
	STAssertFalse([[NSColor blackColor] colorIsMedium], @"Black is not medium");
}

#pragma mark -darkenBy:
- (void)testDarkenRed
{
	NSColor *red = [NSColor redColor];
	STAssertEquals([red redComponent], (CGFloat)1.0f, @"Expected red's red component to be 1.0");
	NSColor *redDarkened = [red darkenBy:0.5];
	STAssertEquals([redDarkened redComponent],   (CGFloat)0.5f, @"Darkening red by 0.5 should result in 0.5, 0, 0");
	STAssertEquals([redDarkened greenComponent], [red greenComponent], @"Darkening red by 0.5 should not change its green");
	STAssertEquals([redDarkened blueComponent],  [red blueComponent],  @"Darkening red by 0.5 should not change its blue");
}

#pragma mark -darkenAndAdjustSaturationBy:
//Pure red already has 1.0 saturation, so this method has the same effect on it as darkenBy:.
- (void)testDarkenAndSaturateRed
{
	NSColor *red = [NSColor redColor];
	STAssertEquals([red redComponent], (CGFloat)1.0f, @"Expected red's red component to be 1.0");
	NSColor *redDarkened = [red darkenBy:0.5];
	STAssertEquals([redDarkened redComponent],   (CGFloat)0.5f, @"Darkening and saturating red by 0.5 should result in 0.5, 0, 0");
	STAssertEquals([redDarkened greenComponent], [red greenComponent], @"Darkening and saturating red by 0.5 should not change its green");
	STAssertEquals([redDarkened blueComponent],  [red blueComponent],  @"Darkening and saturating red by 0.5 should not change its blue");
}
- (void)testDarkenAndSaturatePink
{
	NSColor *pink = [NSColor colorWithCalibratedHue:0.0
										 saturation:0.5 //This is what makes it pink, rather than red.
										 brightness:1.0
											  alpha:1.0];
	STAssertEquals([pink   redComponent], (CGFloat)1.0f, @"Expected pink's red component to be 1.0");
	STAssertEquals([pink greenComponent], (CGFloat)0.5f, @"Expected pink's green component to be 0.5");
	STAssertEquals([pink  blueComponent], (CGFloat)0.5f, @"Expected pink's blue component to be 0.5");
	NSColor *pinkDarkened = [pink darkenBy:0.5];
	STAssertEquals([pinkDarkened   redComponent], (CGFloat)0.5f, @"Darkening and saturating pink by 0.5 should result in 0.5, 0.25, 0.25");
	STAssertEquals([pinkDarkened greenComponent], (CGFloat)0.25f, @"Darkening and saturating pink by 0.5 should result in 0.5, 0.25, 0.25");
	STAssertEquals([pinkDarkened  blueComponent], (CGFloat)0.25f, @"Darkening and saturating pink by 0.5 should result in 0.5, 0.25, 0.25");
}

#pragma mark -colorWithInvertedLuminance
- (void)testInvertLuminanceOfWhite
{
	NSColor *white = [NSColor whiteColor];
	NSColor *black = [white colorWithInvertedLuminance];
	STAssertEquals([black   redComponent], (CGFloat)1.0f - [white whiteComponent], @"White, luminance-inverted, should be black (red component should be %f",   (CGFloat)1.0f - [white whiteComponent]);
	STAssertEquals([black greenComponent], (CGFloat)1.0f - [white whiteComponent], @"White, luminance-inverted, should be black (green component should be %f", (CGFloat)1.0f - [white whiteComponent]);
	STAssertEquals([black  blueComponent], (CGFloat)1.0f - [white whiteComponent], @"White, luminance-inverted, should be black (blue component should be %f",  (CGFloat)1.0f - [white whiteComponent]);
}
- (void)testInvertLuminanceOfBlack
{
	NSColor *black = [NSColor blackColor];
	NSColor *white = [black colorWithInvertedLuminance];
	STAssertEquals([white   redComponent], (CGFloat)1.0f - [black whiteComponent], @"Black, luminance-inverted, should be white (red component should be %f",   (CGFloat)1.0f - [white whiteComponent]);
	STAssertEquals([white greenComponent], (CGFloat)1.0f - [black whiteComponent], @"Black, luminance-inverted, should be white (green component should be %f", (CGFloat)1.0f - [white whiteComponent]);
	STAssertEquals([white  blueComponent], (CGFloat)1.0f - [black whiteComponent], @"Black, luminance-inverted, should be white (blue component should be %f",  (CGFloat)1.0f - [white whiteComponent]);
}
- (void)testInvertLuminanceOfRed
{
	NSColor *red = [NSColor redColor];
	NSColor *black = [red colorWithInvertedLuminance];
	STAssertEquals([black   redComponent], (CGFloat)0.0f, @"Red, luminance-inverted, should be black");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Red, luminance-inverted, should not have any green");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f, @"Red, luminance-inverted, should not have any blue");
}

#pragma mark -contrastingColor
- (void)testContrastingColorForWhite
{
	NSColor *white = [NSColor whiteColor];
	NSColor *contrastingColor = [white contrastingColor];
	//contrastingColor inverts the R, G, and B components if the receiver is not medium, so its result will be in an RGB color space. This is why we compare its RGB components rather than its white component (it has no white component).
	STAssertEquals([contrastingColor   redComponent], (CGFloat)0.0f, @"White's contrasting color should be black (its red component should be 0)");
	STAssertEquals([contrastingColor greenComponent], (CGFloat)0.0f, @"White's contrasting color should be black (its green component should be 0)");
	STAssertEquals([contrastingColor  blueComponent], (CGFloat)0.0f, @"White's contrasting color should be black (its blue component should be 0)");
}
- (void)testContrastingColorForBlack
{
	NSColor *black = [NSColor blackColor];
	NSColor *contrastingColor = [black contrastingColor];
	//contrastingColor inverts the R, G, and B components if the receiver is not medium, so its result will be in an RGB color space. This is why we compare its RGB components rather than its white component (it has no white component).
	STAssertEquals([contrastingColor   redComponent], (CGFloat)1.0f, @"Black's contrasting color should be white (its red component should be 1)");
	STAssertEquals([contrastingColor greenComponent], (CGFloat)1.0f, @"Black's contrasting color should be white (its green component should be 1)");
	STAssertEquals([contrastingColor  blueComponent], (CGFloat)1.0f, @"Black's contrasting color should be white (its blue component should be 1)");
}
- (void)testContrastingColorForGray
{
	NSColor *gray = [NSColor grayColor];
	//Gray's whiteComponent is 0.5. This is medium, but not dark. As such, its contrasting color should be black.
	NSColor *contrastingColor = [gray contrastingColor];
	STAssertEquals([contrastingColor whiteComponent], (CGFloat)0.0f, @"Gray's contrasting color should be black");
}

#pragma mark -adjustHue:saturation:brightness:
//Hue += 1/3
- (void)testAdjustRedToGreen
{
	NSColor *red = [NSColor redColor];
	NSColor *green = [red adjustHue:+(1.0 / 3.0) saturation:0.0 brightness:0.0];
	STAssertEquals([green   redComponent], (CGFloat)0.0f,   @"Red component of green should be 0");
	STAssertEquals([green greenComponent], (CGFloat)1.0f, @"Green component of green should be 1");
	STAssertEquals([green  blueComponent], (CGFloat)0.0f,  @"Blue component of green should be 0");
}
//Saturation -= 1
- (void)testAdjustRedToWhite
{
	NSColor *red = [NSColor redColor];
	NSColor *white = [red adjustHue:0.0 saturation:-1.0 brightness:0.0];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white should be 1");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of green should be 1");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white should be 1");
}
//Brightness -= 1
- (void)testAdjustRedToBlack
{
	NSColor *red = [NSColor redColor];
	NSColor *white = [red adjustHue:0.0 saturation:0.0 brightness:-1.0];
	STAssertEquals([white   redComponent], (CGFloat)0.0f,   @"Red component of white should be 0");
	STAssertEquals([white greenComponent], (CGFloat)0.0f, @"Green component of green should be 0");
	STAssertEquals([white  blueComponent], (CGFloat)0.0f,  @"Blue component of white should be 0");
}

#pragma mark -hexString
- (void)testHexStringForRed
{
	NSColor *color = [NSColor redColor];
	NSString *correctString = @"ff0000";
	STAssertEqualObjects([color hexString], correctString, @"Hex string for red should be %@", correctString);
}
- (void)testHexStringForYellow
{
	NSColor *color = [NSColor yellowColor];
	NSString *correctString = @"ffff00";
	STAssertEqualObjects([color hexString], correctString, @"Hex string for yellow should be %@", correctString);
}
- (void)testHexStringForGreen
{
	NSColor *color = [NSColor greenColor];
	NSString *correctString = @"00ff00";
	STAssertEqualObjects([color hexString], correctString, @"Hex string for green should be %@", correctString);
}
- (void)testHexStringForCyan
{
	NSColor *color = [NSColor cyanColor];
	NSString *correctString = @"00ffff";
	STAssertEqualObjects([color hexString], correctString, @"Hex string for cyan should be %@", correctString);
}
- (void)testHexStringForBlue
{
	NSColor *color = [NSColor blueColor];
	NSString *correctString = @"0000ff";
	STAssertEqualObjects([color hexString], correctString, @"Hex string for blue should be %@", correctString);
}
- (void)testHexStringForMagenta
{
	NSColor *color = [NSColor magentaColor];
	NSString *correctString = @"ff00ff";
	STAssertEqualObjects([color hexString], correctString, @"Hex string for magenta should be %@", correctString);
}
- (void)testHexStringForWhite
{
	NSColor *color = [NSColor whiteColor];
	NSString *correctString = @"ffffff";
	STAssertEqualObjects([color hexString], correctString, @"Hex string for white should be %@", correctString);
}
- (void)testHexStringForBlack
{
	NSColor *color = [NSColor blackColor];
	NSString *correctString = @"000000";
	STAssertEqualObjects([color hexString], correctString, @"Hex string for black should be %@", correctString);
}

#pragma mark -stringRepresentation
- (void)testStringRepresentationForRed
{
	NSColor *color = [NSColor redColor];
	NSString *correctString = @"255,0,0";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for red should be %@", correctString);
}
- (void)testStringRepresentationForYellow
{
	NSColor *color = [NSColor yellowColor];
	NSString *correctString = @"255,255,0";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for yellow should be %@", correctString);
}
- (void)testStringRepresentationForGreen
{
	NSColor *color = [NSColor greenColor];
	NSString *correctString = @"0,255,0";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for green should be %@", correctString);
}
- (void)testStringRepresentationForCyan
{
	NSColor *color = [NSColor cyanColor];
	NSString *correctString = @"0,255,255";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for cyan should be %@", correctString);
}
- (void)testStringRepresentationForBlue
{
	NSColor *color = [NSColor blueColor];
	NSString *correctString = @"0,0,255";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for blue should be %@", correctString);
}
- (void)testStringRepresentationForMagenta
{
	NSColor *color = [NSColor magentaColor];
	NSString *correctString = @"255,0,255";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for magenta should be %@", correctString);
}
- (void)testStringRepresentationForWhite
{
	NSColor *color = [NSColor whiteColor];
	NSString *correctString = @"255,255,255";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for white should be %@", correctString);
}
- (void)testStringRepresentationForBlack
{
	NSColor *color = [NSColor blackColor];
	NSString *correctString = @"0,0,0";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for black should be %@", correctString);
}

- (void)testStringRepresentationForSemiTransparentRed
{
	NSColor *color = [[NSColor redColor] colorWithAlphaComponent:0.5];
	NSString *correctString = @"255,0,0,127";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for red should be %@", correctString);
}
- (void)testStringRepresentationForSemiTransparentYellow
{
	NSColor *color = [[NSColor yellowColor] colorWithAlphaComponent:0.5];
	NSString *correctString = @"255,255,0,127";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for yellow should be %@", correctString);
}
- (void)testStringRepresentationForSemiTransparentGreen
{
	NSColor *color = [[NSColor greenColor] colorWithAlphaComponent:0.5];
	NSString *correctString = @"0,255,0,127";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for green should be %@", correctString);
}
- (void)testStringRepresentationForSemiTransparentCyan
{
	NSColor *color = [[NSColor cyanColor] colorWithAlphaComponent:0.5];
	NSString *correctString = @"0,255,255,127";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for cyan should be %@", correctString);
}
- (void)testStringRepresentationForSemiTransparentBlue
{
	NSColor *color = [[NSColor blueColor] colorWithAlphaComponent:0.5];
	NSString *correctString = @"0,0,255,127";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for blue should be %@", correctString);
}
- (void)testStringRepresentationForSemiTransparentMagenta
{
	NSColor *color = [[NSColor magentaColor] colorWithAlphaComponent:0.5];
	NSString *correctString = @"255,0,255,127";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for magenta should be %@", correctString);
}
- (void)testStringRepresentationForSemiTransparentWhite
{
	NSColor *color = [[NSColor whiteColor] colorWithAlphaComponent:0.5];
	NSString *correctString = @"255,255,255,127";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for white should be %@", correctString);
}
- (void)testStringRepresentationForSemiTransparentBlack
{
	NSColor *color = [[NSColor blackColor] colorWithAlphaComponent:0.5];
	NSString *correctString = @"0,0,0,127";
	STAssertEqualObjects([color stringRepresentation], correctString, @"String representation for black should be %@", correctString);
}

#pragma mark -CSSRepresentation
- (void)testCSSRepresentationForRed
{
	NSColor *color = [NSColor redColor];
	NSString *correctString = @"#ff0000";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for red (with alpha = 1) should be %@", correctString);
}
- (void)testCSSRepresentationForYellow
{
	NSColor *color = [NSColor yellowColor];
	NSString *correctString = @"#ffff00";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for yellow (with alpha = 1) should be %@", correctString);
}
- (void)testCSSRepresentationForGreen
{
	NSColor *color = [NSColor greenColor];
	NSString *correctString = @"#00ff00";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for green (with alpha = 1) should be %@", correctString);
}
- (void)testCSSRepresentationForCyan
{
	NSColor *color = [NSColor cyanColor];
	NSString *correctString = @"#00ffff";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for cyan (with alpha = 1) should be %@", correctString);
}
- (void)testCSSRepresentationForBlue
{
	NSColor *color = [NSColor blueColor];
	NSString *correctString = @"#0000ff";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for blue (with alpha = 1) should be %@", correctString);
}
- (void)testCSSRepresentationForMagenta
{
	NSColor *color = [NSColor magentaColor];
	NSString *correctString = @"#ff00ff";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for magenta (with alpha = 1) should be %@", correctString);
}
- (void)testCSSRepresentationForWhite
{
	NSColor *color = [NSColor whiteColor];
	NSString *correctString = @"#ffffff";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for white (with alpha = 1) should be %@", correctString);
}
- (void)testCSSRepresentationForBlack
{
	NSColor *color = [NSColor blackColor];
	NSString *correctString = @"#000000";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for black (with alpha = 1) should be %@", correctString);
}

#pragma mark -

- (void)testCSSRepresentationForSemiTransparentRed
{
	NSColor *color = [[NSColor redColor] colorWithAlphaComponent:(CGFloat)0.5f];
	NSString *correctString = @"rgba(255,0,0,0.5)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for red (with alpha = 0.5) should be %@", correctString);
}
- (void)testCSSRepresentationForSemiTransparentYellow
{
	NSColor *color = [[NSColor yellowColor] colorWithAlphaComponent:(CGFloat)0.5f];
	NSString *correctString = @"rgba(255,255,0,0.5)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for yellow (with alpha = 0.5) should be %@", correctString);
}
- (void)testCSSRepresentationForSemiTransparentGreen
{
	NSColor *color = [[NSColor greenColor] colorWithAlphaComponent:(CGFloat)0.5f];
	NSString *correctString = @"rgba(0,255,0,0.5)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for green (with alpha = 0.5) should be %@", correctString);
}
- (void)testCSSRepresentationForSemiTransparentCyan
{
	NSColor *color = [[NSColor cyanColor] colorWithAlphaComponent:(CGFloat)0.5f];
	NSString *correctString = @"rgba(0,255,255,0.5)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for cyan (with alpha = 0.5) should be %@", correctString);
}
- (void)testCSSRepresentationForSemiTransparentBlue
{
	NSColor *color = [[NSColor blueColor] colorWithAlphaComponent:(CGFloat)0.5f];
	NSString *correctString = @"rgba(0,0,255,0.5)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for blue (with alpha = 0.5) should be %@", correctString);
}
- (void)testCSSRepresentationForSemiTransparentMagenta
{
	NSColor *color = [[NSColor magentaColor] colorWithAlphaComponent:(CGFloat)0.5f];
	NSString *correctString = @"rgba(255,0,255,0.5)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for magenta (with alpha = 0.5) should be %@", correctString);
}
- (void)testCSSRepresentationForSemiTransparentWhite
{
	NSColor *color = [[NSColor whiteColor] colorWithAlphaComponent:(CGFloat)0.5f];
	NSString *correctString = @"rgba(255,255,255,0.5)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for white (with alpha = 0.5) should be %@", correctString);
}
- (void)testCSSRepresentationForSemiTransparentBlack
{
	NSColor *color = [[NSColor blackColor] colorWithAlphaComponent:(CGFloat)0.5f];
	NSString *correctString = @"rgba(0,0,0,0.5)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for black (with alpha = 0.5) should be %@", correctString);
}

#pragma mark -

- (void)testCSSRepresentationForTransparentRed
{
	NSColor *color = [[NSColor redColor] colorWithAlphaComponent:(CGFloat)0.0f];
	NSString *correctString = @"rgba(255,0,0,0)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for red (with alpha = 0) should be %@", correctString);
}
- (void)testCSSRepresentationForTransparentYellow
{
	NSColor *color = [[NSColor yellowColor] colorWithAlphaComponent:(CGFloat)0.0f];
	NSString *correctString = @"rgba(255,255,0,0)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for yellow (with alpha = 0) should be %@", correctString);
}
- (void)testCSSRepresentationForTransparentGreen
{
	NSColor *color = [[NSColor greenColor] colorWithAlphaComponent:(CGFloat)0.0f];
	NSString *correctString = @"rgba(0,255,0,0)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for green (with alpha = 0) should be %@", correctString);
}
- (void)testCSSRepresentationForTransparentCyan
{
	NSColor *color = [[NSColor cyanColor] colorWithAlphaComponent:(CGFloat)0.0f];
	NSString *correctString = @"rgba(0,255,255,0)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for cyan (with alpha = 0) should be %@", correctString);
}
- (void)testCSSRepresentationForTransparentBlue
{
	NSColor *color = [[NSColor blueColor] colorWithAlphaComponent:(CGFloat)0.0f];
	NSString *correctString = @"rgba(0,0,255,0)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for blue (with alpha = 0) should be %@", correctString);
}
- (void)testCSSRepresentationForTransparentMagenta
{
	NSColor *color = [[NSColor magentaColor] colorWithAlphaComponent:(CGFloat)0.0f];
	NSString *correctString = @"rgba(255,0,255,0)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for magenta (with alpha = 0) should be %@", correctString);
}
- (void)testCSSRepresentationForTransparentWhite
{
	NSColor *color = [[NSColor whiteColor] colorWithAlphaComponent:(CGFloat)0.0f];
	NSString *correctString = @"rgba(255,255,255,0)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for white (with alpha = 0) should be %@", correctString);
}
- (void)testCSSRepresentationForTransparentBlack
{
	NSColor *color = [[NSColor blackColor] colorWithAlphaComponent:(CGFloat)0.0f];
	NSString *correctString = @"rgba(0,0,0,0)";
	STAssertEqualObjects([color CSSRepresentation], correctString, @"CSS representation for black (with alpha = 0) should be %@", correctString);
}

#pragma mark hexToInt/intToHex
- (void)testHexToInt_DecimalNumeral
{
	STAssertEquals(hexToInt('0'), 0x0, @"'0' as hex should be 0");
	STAssertEquals(hexToInt('9'), 0x9, @"'9' as hex should be 9");
}
- (void)testHexToInt_UppercaseLetter
{
	STAssertEquals(hexToInt('A'), 0xA, @"'A' as hex should be 0xA (10)");
	STAssertEquals(hexToInt('F'), 0xF, @"'F' as hex should be 0xF (15)");
}
- (void)testHexToInt_LowercaseLetter
{
	STAssertEquals(hexToInt('a'), 0xa, @"'a' as hex should be 0xa (10)");
	STAssertEquals(hexToInt('f'), 0xf, @"'f' as hex should be 0xf (15)");
}
- (void)testHexToInt_InvalidCharacters
{
	//Outside the range '0' through '9': Invalid.
	STAssertEquals(hexToInt('0' - 1), -1, @"'%c' is not valid hex; hexToInt should return -1", '0' - 1);
	STAssertEquals(hexToInt('9' + 1), -1, @"'%c' is not valid hex; hexToInt should return -1", '9' + 1);
	//Outside the range 'a' through 'f': Invalid.
	STAssertEquals(hexToInt('a' - 1), -1, @"'%c' is not valid hex; hexToInt should return -1", 'a' - 1);
	STAssertEquals(hexToInt('f' + 1), -1, @"'%c' is not valid hex; hexToInt should return -1", 'f' + 1);
	//Outside the range 'A' through 'F': Invalid.
	STAssertEquals(hexToInt('A' - 1), -1, @"'%c' is not valid hex; hexToInt should return -1", 'A' - 1);
	STAssertEquals(hexToInt('F' + 1), -1, @"'%c' is not valid hex; hexToInt should return -1", 'F' + 1);
}
- (void)testIntToHex_0
{
	//Cast explanation: 'x' literals are ints, whereas intToHex returns a char. STAssertEquals fails if the two objects are not *exactly* the same type.
	STAssertEquals(intToHex(0x0), (char)'0', @"0 as hex should be '0'");
}
- (void)testIntToHex_15
{
	//Cast explanation: 'x' literals are ints, whereas intToHex returns a char. STAssertEquals fails if the two objects are not *exactly* the same type.
	STAssertEquals(intToHex(0xa), (char)'a', @"0xa (15) as hex should be 'a'");
}
- (void)testIntToHex_16
{
	//Cast explanation: 'x' literals are ints, whereas intToHex returns a char. STAssertEquals fails if the two objects are not *exactly* the same type.
	STAssertEquals(intToHex(16), (char)'\0', @"0xf + 1 (16) as hex should be NUL");
}
- (void)testIntToHex_Neg1
{
	//Cast explanation: 'x' literals are ints, whereas intToHex returns a char. STAssertEquals fails if the two objects are not *exactly* the same type.
	STAssertEquals(intToHex(-1), (char)'\0', @"-1 as hex should be NUL");
}

#pragma mark -representedColor
//Valid
- (void)testRepresentedColorWithThreeNonZeroComponents
{
	NSColor *white = [@"255,255,255" representedColor];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white should be 1");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of white should be 1");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white should be 1");
}
- (void)testRepresentedColorWithThreeZeroComponents
{
	NSColor *black = [@"0,0,0" representedColor];
	STAssertEquals([black   redComponent], (CGFloat)0.0f,   @"Red component of black should be 0");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Green component of black should be 0");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f,  @"Blue component of black should be 0");
}
- (void)testRepresentedColorWithFourNonZeroComponents;
{
	NSColor *white = [@"255,255,255,127" representedColor];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white should be 1");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of white should be 1");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white should be 1");
	STAssertEquals([white alphaComponent], (CGFloat)127.0f / (CGFloat)255.0f, @"Alpha component of white should be %f", (CGFloat)127.0f / (CGFloat)255.0f);
}
- (void)testRepresentedColorWithFourZeroComponents;
{
	NSColor *black = [@"0,0,0,0" representedColor];
	STAssertEquals([black   redComponent], (CGFloat)0.0f,   @"Red component of black should be 0");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Green component of black should be 0");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f,  @"Blue component of black should be 0");
	STAssertEquals([black alphaComponent], (CGFloat)0.0f, @"Alpha component of black should be 0");
}
//Invalid
- (void)testRepresentedColorWithEmptyString
{
	NSColor *noColor = [@"" representedColor];
	STAssertEquals(noColor, (NSColor *)nil, @"Color represented by the empty string should be nil");
}
- (void)testRepresentedColorWithInvalidString;
{
	NSColor *noColor = [TEST_STRING_1 representedColor];
	STAssertEquals(noColor, (NSColor *)nil, @"Color represented by '%@' should be nil", TEST_STRING_1);
}
- (void)testRepresentedColorWithTwoCommas;
{
	NSColor *noColor = [@",," representedColor];
	STAssertEquals(noColor, (NSColor *)nil, @"Color represented by two commas should be nil");
}
- (void)testRepresentedColorWithThreeCommas;
{
	NSColor *noColor = [@",,," representedColor];
	STAssertEquals(noColor, (NSColor *)nil, @"Color represented by three commas should be nil");
}
- (void)testRepresentedColorWithFourCommas
{
	NSColor *noColor = [@",,,," representedColor];
	STAssertEquals(noColor, (NSColor *)nil, @"Color represented by four commas should be nil");
}

#pragma mark -representedColorWithAlpha:
//Valid
- (void)testRepresentedColorWithAlphaWithThreeNonZeroComponents
{
	NSColor *white = [@"255,255,255" representedColorWithAlpha:0.5];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white (with alpha forced to 0.5) should be 1");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of white (with alpha forced to 0.5) should be 1");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white (with alpha forced to 0.5) should be 1");
	STAssertEquals([white alphaComponent], (CGFloat)0.5f, @"Alpha component of white (with alpha forced to 0.5) should be 0.5");
}
- (void)testRepresentedColorWithAlphaWithThreeZeroComponents
{
	NSColor *black = [@"0,0,0" representedColorWithAlpha:0.5];
	STAssertEquals([black   redComponent], (CGFloat)0.0f,   @"Red component of black (with alpha forced to 0.5) should be 0");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Green component of black (with alpha forced to 0.5) should be 0");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f,  @"Blue component of black (with alpha forced to 0.5) should be 0");
	STAssertEquals([black alphaComponent], (CGFloat)0.5f, @"Alpha component of black (with alpha forced to 0.5) should be 0.5");
}
- (void)testRepresentedColorWithAlphaWithFourNonZeroComponents;
{
	NSColor *white = [@"255,255,255,127" representedColorWithAlpha:0.5];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white (with alpha forced to 0.5) should be 1");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of white (with alpha forced to 0.5) should be 1");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white (with alpha forced to 0.5) should be 1");
	STAssertEquals([white alphaComponent], (CGFloat)0.5f, @"Alpha component of white (with alpha forced to 0.5) should be 0.5");
}
- (void)testRepresentedColorWithAlphaWithFourZeroComponents;
{
	NSColor *black = [@"0,0,0,0" representedColorWithAlpha:0.5];
	STAssertEquals([black   redComponent], (CGFloat)0.0f,   @"Red component of black (with alpha forced to 0.5) should be 0");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Green component of black (with alpha forced to 0.5) should be 0");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f,  @"Blue component of black (with alpha forced to 0.5) should be 0");
	STAssertEquals([black alphaComponent], (CGFloat)0.5f, @"Alpha component of black (with alpha forced to 0.5) should be 0.5");
}
//Invalid
- (void)testRepresentedColorWithAlphaWithEmptyString
{
	NSColor *noColor = [@"" representedColorWithAlpha:0.5];
	STAssertEquals(noColor, (NSColor *)nil, @"Color represented by the empty string (with alpha forced to 0.5) should be nil");
}
- (void)testRepresentedColorWithAlphaWithInvalidString;
{
	NSColor *noColor = [TEST_STRING_2 representedColorWithAlpha:0.5];
	STAssertEquals(noColor, (NSColor *)nil, @"Color represented by '%@' (with alpha forced to 0.5) should be nil", TEST_STRING_1);
}
- (void)testRepresentedColorWithAlphaWithTwoCommas;
{
	NSColor *noColor = [@",," representedColorWithAlpha:0.5];
	STAssertEquals(noColor, (NSColor *)nil, @"Color represented by two commas (with alpha forced to 0.5) should be nil");
}
- (void)testRepresentedColorWithAlphaWithThreeCommas;
{
	NSColor *noColor = [@",,," representedColorWithAlpha:0.5];
	STAssertEquals(noColor, (NSColor *)nil, @"Color represented by three commas (with alpha forced to 0.5) should be nil");
}

#pragma mark -randomColor
- (void)testRandomColorHasAlpha1
{
	NSColor *color = [NSColor randomColor];
	STAssertEquals([color alphaComponent], (CGFloat)1.0f, @"Alpha component of color from +randomColor should be 1");
}

#pragma mark +colorWithHTMLString:

//These methods are automatically generated! If you want to change them, please change the program in the Utilities folder instead. Otherwise, your changes may be clobbered by the next person.
- (void)testColorWith6DigitHTMLStringForRedLowercase
{
	NSString *string = @"#ff0000";
	NSColor *red = [NSColor colorWithHTMLString:string];
	STAssertEquals([red   redComponent], (CGFloat)1.0f,   @"Red component of red should be 1.0");
	STAssertEquals([red greenComponent], (CGFloat)0.0f, @"Green component of red should be 0.0");
	STAssertEquals([red  blueComponent], (CGFloat)0.0f,  @"Blue component of red should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForRedUppercase
{
	NSString *string = @"#FF0000";
	NSColor *red = [NSColor colorWithHTMLString:string];
	STAssertEquals([red   redComponent], (CGFloat)1.0f,   @"Red component of red should be 1.0");
	STAssertEquals([red greenComponent], (CGFloat)0.0f, @"Green component of red should be 0.0");
	STAssertEquals([red  blueComponent], (CGFloat)0.0f,  @"Blue component of red should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForYellowLowercase
{
	NSString *string = @"#ffff00";
	NSColor *yellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([yellow   redComponent], (CGFloat)1.0f,   @"Red component of yellow should be 1.0");
	STAssertEquals([yellow greenComponent], (CGFloat)1.0f, @"Green component of yellow should be 1.0");
	STAssertEquals([yellow  blueComponent], (CGFloat)0.0f,  @"Blue component of yellow should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForYellowUppercase
{
	NSString *string = @"#FFFF00";
	NSColor *yellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([yellow   redComponent], (CGFloat)1.0f,   @"Red component of yellow should be 1.0");
	STAssertEquals([yellow greenComponent], (CGFloat)1.0f, @"Green component of yellow should be 1.0");
	STAssertEquals([yellow  blueComponent], (CGFloat)0.0f,  @"Blue component of yellow should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForGreenLowercase
{
	NSString *string = @"#00ff00";
	NSColor *green = [NSColor colorWithHTMLString:string];
	STAssertEquals([green   redComponent], (CGFloat)0.0f,   @"Red component of green should be 0.0");
	STAssertEquals([green greenComponent], (CGFloat)1.0f, @"Green component of green should be 1.0");
	STAssertEquals([green  blueComponent], (CGFloat)0.0f,  @"Blue component of green should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForGreenUppercase
{
	NSString *string = @"#00FF00";
	NSColor *green = [NSColor colorWithHTMLString:string];
	STAssertEquals([green   redComponent], (CGFloat)0.0f,   @"Red component of green should be 0.0");
	STAssertEquals([green greenComponent], (CGFloat)1.0f, @"Green component of green should be 1.0");
	STAssertEquals([green  blueComponent], (CGFloat)0.0f,  @"Blue component of green should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForCyanLowercase
{
	NSString *string = @"#00ffff";
	NSColor *cyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([cyan   redComponent], (CGFloat)0.0f,   @"Red component of cyan should be 0.0");
	STAssertEquals([cyan greenComponent], (CGFloat)1.0f, @"Green component of cyan should be 1.0");
	STAssertEquals([cyan  blueComponent], (CGFloat)1.0f,  @"Blue component of cyan should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForCyanUppercase
{
	NSString *string = @"#00FFFF";
	NSColor *cyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([cyan   redComponent], (CGFloat)0.0f,   @"Red component of cyan should be 0.0");
	STAssertEquals([cyan greenComponent], (CGFloat)1.0f, @"Green component of cyan should be 1.0");
	STAssertEquals([cyan  blueComponent], (CGFloat)1.0f,  @"Blue component of cyan should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForBlueLowercase
{
	NSString *string = @"#0000ff";
	NSColor *blue = [NSColor colorWithHTMLString:string];
	STAssertEquals([blue   redComponent], (CGFloat)0.0f,   @"Red component of blue should be 0.0");
	STAssertEquals([blue greenComponent], (CGFloat)0.0f, @"Green component of blue should be 0.0");
	STAssertEquals([blue  blueComponent], (CGFloat)1.0f,  @"Blue component of blue should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForBlueUppercase
{
	NSString *string = @"#0000FF";
	NSColor *blue = [NSColor colorWithHTMLString:string];
	STAssertEquals([blue   redComponent], (CGFloat)0.0f,   @"Red component of blue should be 0.0");
	STAssertEquals([blue greenComponent], (CGFloat)0.0f, @"Green component of blue should be 0.0");
	STAssertEquals([blue  blueComponent], (CGFloat)1.0f,  @"Blue component of blue should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForMagentaLowercase
{
	NSString *string = @"#ff00ff";
	NSColor *magenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([magenta   redComponent], (CGFloat)1.0f,   @"Red component of magenta should be 1.0");
	STAssertEquals([magenta greenComponent], (CGFloat)0.0f, @"Green component of magenta should be 0.0");
	STAssertEquals([magenta  blueComponent], (CGFloat)1.0f,  @"Blue component of magenta should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForMagentaUppercase
{
	NSString *string = @"#FF00FF";
	NSColor *magenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([magenta   redComponent], (CGFloat)1.0f,   @"Red component of magenta should be 1.0");
	STAssertEquals([magenta greenComponent], (CGFloat)0.0f, @"Green component of magenta should be 0.0");
	STAssertEquals([magenta  blueComponent], (CGFloat)1.0f,  @"Blue component of magenta should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForWhiteLowercase
{
	NSString *string = @"#ffffff";
	NSColor *white = [NSColor colorWithHTMLString:string];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white should be 1.0");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of white should be 1.0");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForWhiteUppercase
{
	NSString *string = @"#FFFFFF";
	NSColor *white = [NSColor colorWithHTMLString:string];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white should be 1.0");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of white should be 1.0");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForBlackLowercase
{
	NSString *string = @"#000000";
	NSColor *black = [NSColor colorWithHTMLString:string];
	STAssertEquals([black   redComponent], (CGFloat)0.0f,   @"Red component of black should be 0.0");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Green component of black should be 0.0");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f,  @"Blue component of black should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForBlackUppercase
{
	NSString *string = @"#000000";
	NSColor *black = [NSColor colorWithHTMLString:string];
	STAssertEquals([black   redComponent], (CGFloat)0.0f,   @"Red component of black should be 0.0");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Green component of black should be 0.0");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f,  @"Blue component of black should be 0.0");
}

- (void)testColorWith3DigitHTMLStringForRedLowercase
{
	NSString *string = @"#f00";
	NSColor *red = [NSColor colorWithHTMLString:string];
	STAssertEquals([red   redComponent], (CGFloat)1.0f,   @"Red component of red should be 1.0");
	STAssertEquals([red greenComponent], (CGFloat)0.0f, @"Green component of red should be 0.0");
	STAssertEquals([red  blueComponent], (CGFloat)0.0f,  @"Blue component of red should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForRedUppercase
{
	NSString *string = @"#F00";
	NSColor *red = [NSColor colorWithHTMLString:string];
	STAssertEquals([red   redComponent], (CGFloat)1.0f,   @"Red component of red should be 1.0");
	STAssertEquals([red greenComponent], (CGFloat)0.0f, @"Green component of red should be 0.0");
	STAssertEquals([red  blueComponent], (CGFloat)0.0f,  @"Blue component of red should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForYellowLowercase
{
	NSString *string = @"#ff0";
	NSColor *yellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([yellow   redComponent], (CGFloat)1.0f,   @"Red component of yellow should be 1.0");
	STAssertEquals([yellow greenComponent], (CGFloat)1.0f, @"Green component of yellow should be 1.0");
	STAssertEquals([yellow  blueComponent], (CGFloat)0.0f,  @"Blue component of yellow should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForYellowUppercase
{
	NSString *string = @"#FF0";
	NSColor *yellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([yellow   redComponent], (CGFloat)1.0f,   @"Red component of yellow should be 1.0");
	STAssertEquals([yellow greenComponent], (CGFloat)1.0f, @"Green component of yellow should be 1.0");
	STAssertEquals([yellow  blueComponent], (CGFloat)0.0f,  @"Blue component of yellow should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForGreenLowercase
{
	NSString *string = @"#0f0";
	NSColor *green = [NSColor colorWithHTMLString:string];
	STAssertEquals([green   redComponent], (CGFloat)0.0f,   @"Red component of green should be 0.0");
	STAssertEquals([green greenComponent], (CGFloat)1.0f, @"Green component of green should be 1.0");
	STAssertEquals([green  blueComponent], (CGFloat)0.0f,  @"Blue component of green should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForGreenUppercase
{
	NSString *string = @"#0F0";
	NSColor *green = [NSColor colorWithHTMLString:string];
	STAssertEquals([green   redComponent], (CGFloat)0.0f,   @"Red component of green should be 0.0");
	STAssertEquals([green greenComponent], (CGFloat)1.0f, @"Green component of green should be 1.0");
	STAssertEquals([green  blueComponent], (CGFloat)0.0f,  @"Blue component of green should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForCyanLowercase
{
	NSString *string = @"#0ff";
	NSColor *cyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([cyan   redComponent], (CGFloat)0.0f,   @"Red component of cyan should be 0.0");
	STAssertEquals([cyan greenComponent], (CGFloat)1.0f, @"Green component of cyan should be 1.0");
	STAssertEquals([cyan  blueComponent], (CGFloat)1.0f,  @"Blue component of cyan should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForCyanUppercase
{
	NSString *string = @"#0FF";
	NSColor *cyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([cyan   redComponent], (CGFloat)0.0f,   @"Red component of cyan should be 0.0");
	STAssertEquals([cyan greenComponent], (CGFloat)1.0f, @"Green component of cyan should be 1.0");
	STAssertEquals([cyan  blueComponent], (CGFloat)1.0f,  @"Blue component of cyan should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForBlueLowercase
{
	NSString *string = @"#00f";
	NSColor *blue = [NSColor colorWithHTMLString:string];
	STAssertEquals([blue   redComponent], (CGFloat)0.0f,   @"Red component of blue should be 0.0");
	STAssertEquals([blue greenComponent], (CGFloat)0.0f, @"Green component of blue should be 0.0");
	STAssertEquals([blue  blueComponent], (CGFloat)1.0f,  @"Blue component of blue should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForBlueUppercase
{
	NSString *string = @"#00F";
	NSColor *blue = [NSColor colorWithHTMLString:string];
	STAssertEquals([blue   redComponent], (CGFloat)0.0f,   @"Red component of blue should be 0.0");
	STAssertEquals([blue greenComponent], (CGFloat)0.0f, @"Green component of blue should be 0.0");
	STAssertEquals([blue  blueComponent], (CGFloat)1.0f,  @"Blue component of blue should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForMagentaLowercase
{
	NSString *string = @"#f0f";
	NSColor *magenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([magenta   redComponent], (CGFloat)1.0f,   @"Red component of magenta should be 1.0");
	STAssertEquals([magenta greenComponent], (CGFloat)0.0f, @"Green component of magenta should be 0.0");
	STAssertEquals([magenta  blueComponent], (CGFloat)1.0f,  @"Blue component of magenta should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForMagentaUppercase
{
	NSString *string = @"#F0F";
	NSColor *magenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([magenta   redComponent], (CGFloat)1.0f,   @"Red component of magenta should be 1.0");
	STAssertEquals([magenta greenComponent], (CGFloat)0.0f, @"Green component of magenta should be 0.0");
	STAssertEquals([magenta  blueComponent], (CGFloat)1.0f,  @"Blue component of magenta should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForWhiteLowercase
{
	NSString *string = @"#fff";
	NSColor *white = [NSColor colorWithHTMLString:string];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white should be 1.0");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of white should be 1.0");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForWhiteUppercase
{
	NSString *string = @"#FFF";
	NSColor *white = [NSColor colorWithHTMLString:string];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white should be 1.0");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of white should be 1.0");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForBlackLowercase
{
	NSString *string = @"#000";
	NSColor *black = [NSColor colorWithHTMLString:string];
	STAssertEquals([black   redComponent], (CGFloat)0.0f,   @"Red component of black should be 0.0");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Green component of black should be 0.0");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f,  @"Blue component of black should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForBlackUppercase
{
	NSString *string = @"#000";
	NSColor *black = [NSColor colorWithHTMLString:string];
	STAssertEquals([black   redComponent], (CGFloat)0.0f,   @"Red component of black should be 0.0");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Green component of black should be 0.0");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f,  @"Blue component of black should be 0.0");
}

- (void)testColorWith8DigitHTMLStringForRedLowercase
{
	NSString *string = @"#ff0000ff";
	NSColor *red = [NSColor colorWithHTMLString:string];
	STAssertEquals([red   redComponent], (CGFloat)1.0f,   @"Red component of red should be 1.0");
	STAssertEquals([red greenComponent], (CGFloat)0.0f, @"Green component of red should be 0.0");
	STAssertEquals([red  blueComponent], (CGFloat)0.0f,  @"Blue component of red should be 0.0");
	STAssertEquals([red alphaComponent], (CGFloat)1.0f, @"Alpha component of red should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForRedUppercase
{
	NSString *string = @"#FF0000FF";
	NSColor *red = [NSColor colorWithHTMLString:string];
	STAssertEquals([red   redComponent], (CGFloat)1.0f,   @"Red component of red should be 1.0");
	STAssertEquals([red greenComponent], (CGFloat)0.0f, @"Green component of red should be 0.0");
	STAssertEquals([red  blueComponent], (CGFloat)0.0f,  @"Blue component of red should be 0.0");
	STAssertEquals([red alphaComponent], (CGFloat)1.0f, @"Alpha component of red should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForYellowLowercase
{
	NSString *string = @"#ffff00ff";
	NSColor *yellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([yellow   redComponent], (CGFloat)1.0f,   @"Red component of yellow should be 1.0");
	STAssertEquals([yellow greenComponent], (CGFloat)1.0f, @"Green component of yellow should be 1.0");
	STAssertEquals([yellow  blueComponent], (CGFloat)0.0f,  @"Blue component of yellow should be 0.0");
	STAssertEquals([yellow alphaComponent], (CGFloat)1.0f, @"Alpha component of yellow should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForYellowUppercase
{
	NSString *string = @"#FFFF00FF";
	NSColor *yellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([yellow   redComponent], (CGFloat)1.0f,   @"Red component of yellow should be 1.0");
	STAssertEquals([yellow greenComponent], (CGFloat)1.0f, @"Green component of yellow should be 1.0");
	STAssertEquals([yellow  blueComponent], (CGFloat)0.0f,  @"Blue component of yellow should be 0.0");
	STAssertEquals([yellow alphaComponent], (CGFloat)1.0f, @"Alpha component of yellow should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForGreenLowercase
{
	NSString *string = @"#00ff00ff";
	NSColor *green = [NSColor colorWithHTMLString:string];
	STAssertEquals([green   redComponent], (CGFloat)0.0f,   @"Red component of green should be 0.0");
	STAssertEquals([green greenComponent], (CGFloat)1.0f, @"Green component of green should be 1.0");
	STAssertEquals([green  blueComponent], (CGFloat)0.0f,  @"Blue component of green should be 0.0");
	STAssertEquals([green alphaComponent], (CGFloat)1.0f, @"Alpha component of green should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForGreenUppercase
{
	NSString *string = @"#00FF00FF";
	NSColor *green = [NSColor colorWithHTMLString:string];
	STAssertEquals([green   redComponent], (CGFloat)0.0f,   @"Red component of green should be 0.0");
	STAssertEquals([green greenComponent], (CGFloat)1.0f, @"Green component of green should be 1.0");
	STAssertEquals([green  blueComponent], (CGFloat)0.0f,  @"Blue component of green should be 0.0");
	STAssertEquals([green alphaComponent], (CGFloat)1.0f, @"Alpha component of green should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForCyanLowercase
{
	NSString *string = @"#00ffffff";
	NSColor *cyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([cyan   redComponent], (CGFloat)0.0f,   @"Red component of cyan should be 0.0");
	STAssertEquals([cyan greenComponent], (CGFloat)1.0f, @"Green component of cyan should be 1.0");
	STAssertEquals([cyan  blueComponent], (CGFloat)1.0f,  @"Blue component of cyan should be 1.0");
	STAssertEquals([cyan alphaComponent], (CGFloat)1.0f, @"Alpha component of cyan should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForCyanUppercase
{
	NSString *string = @"#00FFFFFF";
	NSColor *cyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([cyan   redComponent], (CGFloat)0.0f,   @"Red component of cyan should be 0.0");
	STAssertEquals([cyan greenComponent], (CGFloat)1.0f, @"Green component of cyan should be 1.0");
	STAssertEquals([cyan  blueComponent], (CGFloat)1.0f,  @"Blue component of cyan should be 1.0");
	STAssertEquals([cyan alphaComponent], (CGFloat)1.0f, @"Alpha component of cyan should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForBlueLowercase
{
	NSString *string = @"#0000ffff";
	NSColor *blue = [NSColor colorWithHTMLString:string];
	STAssertEquals([blue   redComponent], (CGFloat)0.0f,   @"Red component of blue should be 0.0");
	STAssertEquals([blue greenComponent], (CGFloat)0.0f, @"Green component of blue should be 0.0");
	STAssertEquals([blue  blueComponent], (CGFloat)1.0f,  @"Blue component of blue should be 1.0");
	STAssertEquals([blue alphaComponent], (CGFloat)1.0f, @"Alpha component of blue should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForBlueUppercase
{
	NSString *string = @"#0000FFFF";
	NSColor *blue = [NSColor colorWithHTMLString:string];
	STAssertEquals([blue   redComponent], (CGFloat)0.0f,   @"Red component of blue should be 0.0");
	STAssertEquals([blue greenComponent], (CGFloat)0.0f, @"Green component of blue should be 0.0");
	STAssertEquals([blue  blueComponent], (CGFloat)1.0f,  @"Blue component of blue should be 1.0");
	STAssertEquals([blue alphaComponent], (CGFloat)1.0f, @"Alpha component of blue should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForMagentaLowercase
{
	NSString *string = @"#ff00ffff";
	NSColor *magenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([magenta   redComponent], (CGFloat)1.0f,   @"Red component of magenta should be 1.0");
	STAssertEquals([magenta greenComponent], (CGFloat)0.0f, @"Green component of magenta should be 0.0");
	STAssertEquals([magenta  blueComponent], (CGFloat)1.0f,  @"Blue component of magenta should be 1.0");
	STAssertEquals([magenta alphaComponent], (CGFloat)1.0f, @"Alpha component of magenta should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForMagentaUppercase
{
	NSString *string = @"#FF00FFFF";
	NSColor *magenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([magenta   redComponent], (CGFloat)1.0f,   @"Red component of magenta should be 1.0");
	STAssertEquals([magenta greenComponent], (CGFloat)0.0f, @"Green component of magenta should be 0.0");
	STAssertEquals([magenta  blueComponent], (CGFloat)1.0f,  @"Blue component of magenta should be 1.0");
	STAssertEquals([magenta alphaComponent], (CGFloat)1.0f, @"Alpha component of magenta should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForWhiteLowercase
{
	NSString *string = @"#ffffffff";
	NSColor *white = [NSColor colorWithHTMLString:string];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white should be 1.0");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of white should be 1.0");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white should be 1.0");
	STAssertEquals([white alphaComponent], (CGFloat)1.0f, @"Alpha component of white should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForWhiteUppercase
{
	NSString *string = @"#FFFFFFFF";
	NSColor *white = [NSColor colorWithHTMLString:string];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white should be 1.0");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of white should be 1.0");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white should be 1.0");
	STAssertEquals([white alphaComponent], (CGFloat)1.0f, @"Alpha component of white should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForBlackLowercase
{
	NSString *string = @"#000000ff";
	NSColor *black = [NSColor colorWithHTMLString:string];
	STAssertEquals([black   redComponent], (CGFloat)0.0f,   @"Red component of black should be 0.0");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Green component of black should be 0.0");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f,  @"Blue component of black should be 0.0");
	STAssertEquals([black alphaComponent], (CGFloat)1.0f, @"Alpha component of black should be 1.0");
}
- (void)testColorWith8DigitHTMLStringForBlackUppercase
{
	NSString *string = @"#000000FF";
	NSColor *black = [NSColor colorWithHTMLString:string];
	STAssertEquals([black   redComponent], (CGFloat)0.0f,   @"Red component of black should be 0.0");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Green component of black should be 0.0");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f,  @"Blue component of black should be 0.0");
	STAssertEquals([black alphaComponent], (CGFloat)1.0f, @"Alpha component of black should be 1.0");
}

- (void)testColorWith4DigitHTMLStringForRedLowercase
{
	NSString *string = @"#f00f";
	NSColor *red = [NSColor colorWithHTMLString:string];
	STAssertEquals([red   redComponent], (CGFloat)1.0f,   @"Red component of red should be 1.0");
	STAssertEquals([red greenComponent], (CGFloat)0.0f, @"Green component of red should be 0.0");
	STAssertEquals([red  blueComponent], (CGFloat)0.0f,  @"Blue component of red should be 0.0");
	STAssertEquals([red alphaComponent], (CGFloat)1.0f, @"Alpha component of red should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForRedUppercase
{
	NSString *string = @"#F00F";
	NSColor *red = [NSColor colorWithHTMLString:string];
	STAssertEquals([red   redComponent], (CGFloat)1.0f,   @"Red component of red should be 1.0");
	STAssertEquals([red greenComponent], (CGFloat)0.0f, @"Green component of red should be 0.0");
	STAssertEquals([red  blueComponent], (CGFloat)0.0f,  @"Blue component of red should be 0.0");
	STAssertEquals([red alphaComponent], (CGFloat)1.0f, @"Alpha component of red should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForYellowLowercase
{
	NSString *string = @"#ff0f";
	NSColor *yellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([yellow   redComponent], (CGFloat)1.0f,   @"Red component of yellow should be 1.0");
	STAssertEquals([yellow greenComponent], (CGFloat)1.0f, @"Green component of yellow should be 1.0");
	STAssertEquals([yellow  blueComponent], (CGFloat)0.0f,  @"Blue component of yellow should be 0.0");
	STAssertEquals([yellow alphaComponent], (CGFloat)1.0f, @"Alpha component of yellow should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForYellowUppercase
{
	NSString *string = @"#FF0F";
	NSColor *yellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([yellow   redComponent], (CGFloat)1.0f,   @"Red component of yellow should be 1.0");
	STAssertEquals([yellow greenComponent], (CGFloat)1.0f, @"Green component of yellow should be 1.0");
	STAssertEquals([yellow  blueComponent], (CGFloat)0.0f,  @"Blue component of yellow should be 0.0");
	STAssertEquals([yellow alphaComponent], (CGFloat)1.0f, @"Alpha component of yellow should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForGreenLowercase
{
	NSString *string = @"#0f0f";
	NSColor *green = [NSColor colorWithHTMLString:string];
	STAssertEquals([green   redComponent], (CGFloat)0.0f,   @"Red component of green should be 0.0");
	STAssertEquals([green greenComponent], (CGFloat)1.0f, @"Green component of green should be 1.0");
	STAssertEquals([green  blueComponent], (CGFloat)0.0f,  @"Blue component of green should be 0.0");
	STAssertEquals([green alphaComponent], (CGFloat)1.0f, @"Alpha component of green should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForGreenUppercase
{
	NSString *string = @"#0F0F";
	NSColor *green = [NSColor colorWithHTMLString:string];
	STAssertEquals([green   redComponent], (CGFloat)0.0f,   @"Red component of green should be 0.0");
	STAssertEquals([green greenComponent], (CGFloat)1.0f, @"Green component of green should be 1.0");
	STAssertEquals([green  blueComponent], (CGFloat)0.0f,  @"Blue component of green should be 0.0");
	STAssertEquals([green alphaComponent], (CGFloat)1.0f, @"Alpha component of green should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForCyanLowercase
{
	NSString *string = @"#0fff";
	NSColor *cyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([cyan   redComponent], (CGFloat)0.0f,   @"Red component of cyan should be 0.0");
	STAssertEquals([cyan greenComponent], (CGFloat)1.0f, @"Green component of cyan should be 1.0");
	STAssertEquals([cyan  blueComponent], (CGFloat)1.0f,  @"Blue component of cyan should be 1.0");
	STAssertEquals([cyan alphaComponent], (CGFloat)1.0f, @"Alpha component of cyan should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForCyanUppercase
{
	NSString *string = @"#0FFF";
	NSColor *cyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([cyan   redComponent], (CGFloat)0.0f,   @"Red component of cyan should be 0.0");
	STAssertEquals([cyan greenComponent], (CGFloat)1.0f, @"Green component of cyan should be 1.0");
	STAssertEquals([cyan  blueComponent], (CGFloat)1.0f,  @"Blue component of cyan should be 1.0");
	STAssertEquals([cyan alphaComponent], (CGFloat)1.0f, @"Alpha component of cyan should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForBlueLowercase
{
	NSString *string = @"#00ff";
	NSColor *blue = [NSColor colorWithHTMLString:string];
	STAssertEquals([blue   redComponent], (CGFloat)0.0f,   @"Red component of blue should be 0.0");
	STAssertEquals([blue greenComponent], (CGFloat)0.0f, @"Green component of blue should be 0.0");
	STAssertEquals([blue  blueComponent], (CGFloat)1.0f,  @"Blue component of blue should be 1.0");
	STAssertEquals([blue alphaComponent], (CGFloat)1.0f, @"Alpha component of blue should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForBlueUppercase
{
	NSString *string = @"#00FF";
	NSColor *blue = [NSColor colorWithHTMLString:string];
	STAssertEquals([blue   redComponent], (CGFloat)0.0f,   @"Red component of blue should be 0.0");
	STAssertEquals([blue greenComponent], (CGFloat)0.0f, @"Green component of blue should be 0.0");
	STAssertEquals([blue  blueComponent], (CGFloat)1.0f,  @"Blue component of blue should be 1.0");
	STAssertEquals([blue alphaComponent], (CGFloat)1.0f, @"Alpha component of blue should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForMagentaLowercase
{
	NSString *string = @"#f0ff";
	NSColor *magenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([magenta   redComponent], (CGFloat)1.0f,   @"Red component of magenta should be 1.0");
	STAssertEquals([magenta greenComponent], (CGFloat)0.0f, @"Green component of magenta should be 0.0");
	STAssertEquals([magenta  blueComponent], (CGFloat)1.0f,  @"Blue component of magenta should be 1.0");
	STAssertEquals([magenta alphaComponent], (CGFloat)1.0f, @"Alpha component of magenta should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForMagentaUppercase
{
	NSString *string = @"#F0FF";
	NSColor *magenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([magenta   redComponent], (CGFloat)1.0f,   @"Red component of magenta should be 1.0");
	STAssertEquals([magenta greenComponent], (CGFloat)0.0f, @"Green component of magenta should be 0.0");
	STAssertEquals([magenta  blueComponent], (CGFloat)1.0f,  @"Blue component of magenta should be 1.0");
	STAssertEquals([magenta alphaComponent], (CGFloat)1.0f, @"Alpha component of magenta should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForWhiteLowercase
{
	NSString *string = @"#ffff";
	NSColor *white = [NSColor colorWithHTMLString:string];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white should be 1.0");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of white should be 1.0");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white should be 1.0");
	STAssertEquals([white alphaComponent], (CGFloat)1.0f, @"Alpha component of white should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForWhiteUppercase
{
	NSString *string = @"#FFFF";
	NSColor *white = [NSColor colorWithHTMLString:string];
	STAssertEquals([white   redComponent], (CGFloat)1.0f,   @"Red component of white should be 1.0");
	STAssertEquals([white greenComponent], (CGFloat)1.0f, @"Green component of white should be 1.0");
	STAssertEquals([white  blueComponent], (CGFloat)1.0f,  @"Blue component of white should be 1.0");
	STAssertEquals([white alphaComponent], (CGFloat)1.0f, @"Alpha component of white should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForBlackLowercase
{
	NSString *string = @"#000f";
	NSColor *black = [NSColor colorWithHTMLString:string];
	STAssertEquals([black   redComponent], (CGFloat)0.0f,   @"Red component of black should be 0.0");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Green component of black should be 0.0");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f,  @"Blue component of black should be 0.0");
	STAssertEquals([black alphaComponent], (CGFloat)1.0f, @"Alpha component of black should be 1.0");
}
- (void)testColorWith4DigitHTMLStringForBlackUppercase
{
	NSString *string = @"#000F";
	NSColor *black = [NSColor colorWithHTMLString:string];
	STAssertEquals([black   redComponent], (CGFloat)0.0f,   @"Red component of black should be 0.0");
	STAssertEquals([black greenComponent], (CGFloat)0.0f, @"Green component of black should be 0.0");
	STAssertEquals([black  blueComponent], (CGFloat)0.0f,  @"Blue component of black should be 0.0");
	STAssertEquals([black alphaComponent], (CGFloat)1.0f, @"Alpha component of black should be 1.0");
}

- (void)testColorWith6DigitHTMLStringForTransparentRedLowercase
{
	NSString *string = @"#ff0000";
	NSColor *transparentRed = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentRed   redComponent], (CGFloat)1.0f,   @"Red component of transparent red should be 1.0");
	STAssertEquals([transparentRed greenComponent], (CGFloat)0.0f, @"Green component of transparent red should be 0.0");
	STAssertEquals([transparentRed  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent red should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentRedUppercase
{
	NSString *string = @"#FF0000";
	NSColor *transparentRed = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentRed   redComponent], (CGFloat)1.0f,   @"Red component of transparent red should be 1.0");
	STAssertEquals([transparentRed greenComponent], (CGFloat)0.0f, @"Green component of transparent red should be 0.0");
	STAssertEquals([transparentRed  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent red should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentYellowLowercase
{
	NSString *string = @"#ffff00";
	NSColor *transparentYellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentYellow   redComponent], (CGFloat)1.0f,   @"Red component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow greenComponent], (CGFloat)1.0f, @"Green component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent yellow should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentYellowUppercase
{
	NSString *string = @"#FFFF00";
	NSColor *transparentYellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentYellow   redComponent], (CGFloat)1.0f,   @"Red component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow greenComponent], (CGFloat)1.0f, @"Green component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent yellow should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentGreenLowercase
{
	NSString *string = @"#00ff00";
	NSColor *transparentGreen = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentGreen   redComponent], (CGFloat)0.0f,   @"Red component of transparent green should be 0.0");
	STAssertEquals([transparentGreen greenComponent], (CGFloat)1.0f, @"Green component of transparent green should be 1.0");
	STAssertEquals([transparentGreen  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent green should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentGreenUppercase
{
	NSString *string = @"#00FF00";
	NSColor *transparentGreen = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentGreen   redComponent], (CGFloat)0.0f,   @"Red component of transparent green should be 0.0");
	STAssertEquals([transparentGreen greenComponent], (CGFloat)1.0f, @"Green component of transparent green should be 1.0");
	STAssertEquals([transparentGreen  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent green should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentCyanLowercase
{
	NSString *string = @"#00ffff";
	NSColor *transparentCyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentCyan   redComponent], (CGFloat)0.0f,   @"Red component of transparent cyan should be 0.0");
	STAssertEquals([transparentCyan greenComponent], (CGFloat)1.0f, @"Green component of transparent cyan should be 1.0");
	STAssertEquals([transparentCyan  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent cyan should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentCyanUppercase
{
	NSString *string = @"#00FFFF";
	NSColor *transparentCyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentCyan   redComponent], (CGFloat)0.0f,   @"Red component of transparent cyan should be 0.0");
	STAssertEquals([transparentCyan greenComponent], (CGFloat)1.0f, @"Green component of transparent cyan should be 1.0");
	STAssertEquals([transparentCyan  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent cyan should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentBlueLowercase
{
	NSString *string = @"#0000ff";
	NSColor *transparentBlue = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlue   redComponent], (CGFloat)0.0f,   @"Red component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue greenComponent], (CGFloat)0.0f, @"Green component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent blue should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentBlueUppercase
{
	NSString *string = @"#0000FF";
	NSColor *transparentBlue = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlue   redComponent], (CGFloat)0.0f,   @"Red component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue greenComponent], (CGFloat)0.0f, @"Green component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent blue should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentMagentaLowercase
{
	NSString *string = @"#ff00ff";
	NSColor *transparentMagenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentMagenta   redComponent], (CGFloat)1.0f,   @"Red component of transparent magenta should be 1.0");
	STAssertEquals([transparentMagenta greenComponent], (CGFloat)0.0f, @"Green component of transparent magenta should be 0.0");
	STAssertEquals([transparentMagenta  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent magenta should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentMagentaUppercase
{
	NSString *string = @"#FF00FF";
	NSColor *transparentMagenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentMagenta   redComponent], (CGFloat)1.0f,   @"Red component of transparent magenta should be 1.0");
	STAssertEquals([transparentMagenta greenComponent], (CGFloat)0.0f, @"Green component of transparent magenta should be 0.0");
	STAssertEquals([transparentMagenta  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent magenta should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentWhiteLowercase
{
	NSString *string = @"#ffffff";
	NSColor *transparentWhite = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentWhite   redComponent], (CGFloat)1.0f,   @"Red component of transparent white should be 1.0");
	STAssertEquals([transparentWhite greenComponent], (CGFloat)1.0f, @"Green component of transparent white should be 1.0");
	STAssertEquals([transparentWhite  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent white should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentWhiteUppercase
{
	NSString *string = @"#FFFFFF";
	NSColor *transparentWhite = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentWhite   redComponent], (CGFloat)1.0f,   @"Red component of transparent white should be 1.0");
	STAssertEquals([transparentWhite greenComponent], (CGFloat)1.0f, @"Green component of transparent white should be 1.0");
	STAssertEquals([transparentWhite  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent white should be 1.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentBlackLowercase
{
	NSString *string = @"#000000";
	NSColor *transparentBlack = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlack   redComponent], (CGFloat)0.0f,   @"Red component of transparent black should be 0.0");
	STAssertEquals([transparentBlack greenComponent], (CGFloat)0.0f, @"Green component of transparent black should be 0.0");
	STAssertEquals([transparentBlack  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent black should be 0.0");
}
- (void)testColorWith6DigitHTMLStringForTransparentBlackUppercase
{
	NSString *string = @"#000000";
	NSColor *transparentBlack = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlack   redComponent], (CGFloat)0.0f,   @"Red component of transparent black should be 0.0");
	STAssertEquals([transparentBlack greenComponent], (CGFloat)0.0f, @"Green component of transparent black should be 0.0");
	STAssertEquals([transparentBlack  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent black should be 0.0");
}

- (void)testColorWith3DigitHTMLStringForTransparentRedLowercase
{
	NSString *string = @"#f00";
	NSColor *transparentRed = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentRed   redComponent], (CGFloat)1.0f,   @"Red component of transparent red should be 1.0");
	STAssertEquals([transparentRed greenComponent], (CGFloat)0.0f, @"Green component of transparent red should be 0.0");
	STAssertEquals([transparentRed  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent red should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentRedUppercase
{
	NSString *string = @"#F00";
	NSColor *transparentRed = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentRed   redComponent], (CGFloat)1.0f,   @"Red component of transparent red should be 1.0");
	STAssertEquals([transparentRed greenComponent], (CGFloat)0.0f, @"Green component of transparent red should be 0.0");
	STAssertEquals([transparentRed  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent red should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentYellowLowercase
{
	NSString *string = @"#ff0";
	NSColor *transparentYellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentYellow   redComponent], (CGFloat)1.0f,   @"Red component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow greenComponent], (CGFloat)1.0f, @"Green component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent yellow should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentYellowUppercase
{
	NSString *string = @"#FF0";
	NSColor *transparentYellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentYellow   redComponent], (CGFloat)1.0f,   @"Red component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow greenComponent], (CGFloat)1.0f, @"Green component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent yellow should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentGreenLowercase
{
	NSString *string = @"#0f0";
	NSColor *transparentGreen = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentGreen   redComponent], (CGFloat)0.0f,   @"Red component of transparent green should be 0.0");
	STAssertEquals([transparentGreen greenComponent], (CGFloat)1.0f, @"Green component of transparent green should be 1.0");
	STAssertEquals([transparentGreen  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent green should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentGreenUppercase
{
	NSString *string = @"#0F0";
	NSColor *transparentGreen = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentGreen   redComponent], (CGFloat)0.0f,   @"Red component of transparent green should be 0.0");
	STAssertEquals([transparentGreen greenComponent], (CGFloat)1.0f, @"Green component of transparent green should be 1.0");
	STAssertEquals([transparentGreen  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent green should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentCyanLowercase
{
	NSString *string = @"#0ff";
	NSColor *transparentCyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentCyan   redComponent], (CGFloat)0.0f,   @"Red component of transparent cyan should be 0.0");
	STAssertEquals([transparentCyan greenComponent], (CGFloat)1.0f, @"Green component of transparent cyan should be 1.0");
	STAssertEquals([transparentCyan  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent cyan should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentCyanUppercase
{
	NSString *string = @"#0FF";
	NSColor *transparentCyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentCyan   redComponent], (CGFloat)0.0f,   @"Red component of transparent cyan should be 0.0");
	STAssertEquals([transparentCyan greenComponent], (CGFloat)1.0f, @"Green component of transparent cyan should be 1.0");
	STAssertEquals([transparentCyan  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent cyan should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentBlueLowercase
{
	NSString *string = @"#00f";
	NSColor *transparentBlue = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlue   redComponent], (CGFloat)0.0f,   @"Red component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue greenComponent], (CGFloat)0.0f, @"Green component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent blue should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentBlueUppercase
{
	NSString *string = @"#00F";
	NSColor *transparentBlue = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlue   redComponent], (CGFloat)0.0f,   @"Red component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue greenComponent], (CGFloat)0.0f, @"Green component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent blue should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentMagentaLowercase
{
	NSString *string = @"#f0f";
	NSColor *transparentMagenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentMagenta   redComponent], (CGFloat)1.0f,   @"Red component of transparent magenta should be 1.0");
	STAssertEquals([transparentMagenta greenComponent], (CGFloat)0.0f, @"Green component of transparent magenta should be 0.0");
	STAssertEquals([transparentMagenta  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent magenta should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentMagentaUppercase
{
	NSString *string = @"#F0F";
	NSColor *transparentMagenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentMagenta   redComponent], (CGFloat)1.0f,   @"Red component of transparent magenta should be 1.0");
	STAssertEquals([transparentMagenta greenComponent], (CGFloat)0.0f, @"Green component of transparent magenta should be 0.0");
	STAssertEquals([transparentMagenta  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent magenta should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentWhiteLowercase
{
	NSString *string = @"#fff";
	NSColor *transparentWhite = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentWhite   redComponent], (CGFloat)1.0f,   @"Red component of transparent white should be 1.0");
	STAssertEquals([transparentWhite greenComponent], (CGFloat)1.0f, @"Green component of transparent white should be 1.0");
	STAssertEquals([transparentWhite  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent white should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentWhiteUppercase
{
	NSString *string = @"#FFF";
	NSColor *transparentWhite = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentWhite   redComponent], (CGFloat)1.0f,   @"Red component of transparent white should be 1.0");
	STAssertEquals([transparentWhite greenComponent], (CGFloat)1.0f, @"Green component of transparent white should be 1.0");
	STAssertEquals([transparentWhite  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent white should be 1.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentBlackLowercase
{
	NSString *string = @"#000";
	NSColor *transparentBlack = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlack   redComponent], (CGFloat)0.0f,   @"Red component of transparent black should be 0.0");
	STAssertEquals([transparentBlack greenComponent], (CGFloat)0.0f, @"Green component of transparent black should be 0.0");
	STAssertEquals([transparentBlack  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent black should be 0.0");
}
- (void)testColorWith3DigitHTMLStringForTransparentBlackUppercase
{
	NSString *string = @"#000";
	NSColor *transparentBlack = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlack   redComponent], (CGFloat)0.0f,   @"Red component of transparent black should be 0.0");
	STAssertEquals([transparentBlack greenComponent], (CGFloat)0.0f, @"Green component of transparent black should be 0.0");
	STAssertEquals([transparentBlack  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent black should be 0.0");
}

- (void)testColorWith8DigitHTMLStringForTransparentRedLowercase
{
	NSString *string = @"#ff000000";
	NSColor *transparentRed = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentRed   redComponent], (CGFloat)1.0f,   @"Red component of transparent red should be 1.0");
	STAssertEquals([transparentRed greenComponent], (CGFloat)0.0f, @"Green component of transparent red should be 0.0");
	STAssertEquals([transparentRed  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent red should be 0.0");
	STAssertEquals([transparentRed alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent red should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentRedUppercase
{
	NSString *string = @"#FF000000";
	NSColor *transparentRed = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentRed   redComponent], (CGFloat)1.0f,   @"Red component of transparent red should be 1.0");
	STAssertEquals([transparentRed greenComponent], (CGFloat)0.0f, @"Green component of transparent red should be 0.0");
	STAssertEquals([transparentRed  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent red should be 0.0");
	STAssertEquals([transparentRed alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent red should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentYellowLowercase
{
	NSString *string = @"#ffff0000";
	NSColor *transparentYellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentYellow   redComponent], (CGFloat)1.0f,   @"Red component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow greenComponent], (CGFloat)1.0f, @"Green component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent yellow should be 0.0");
	STAssertEquals([transparentYellow alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent yellow should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentYellowUppercase
{
	NSString *string = @"#FFFF0000";
	NSColor *transparentYellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentYellow   redComponent], (CGFloat)1.0f,   @"Red component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow greenComponent], (CGFloat)1.0f, @"Green component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent yellow should be 0.0");
	STAssertEquals([transparentYellow alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent yellow should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentGreenLowercase
{
	NSString *string = @"#00ff0000";
	NSColor *transparentGreen = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentGreen   redComponent], (CGFloat)0.0f,   @"Red component of transparent green should be 0.0");
	STAssertEquals([transparentGreen greenComponent], (CGFloat)1.0f, @"Green component of transparent green should be 1.0");
	STAssertEquals([transparentGreen  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent green should be 0.0");
	STAssertEquals([transparentGreen alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent green should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentGreenUppercase
{
	NSString *string = @"#00FF0000";
	NSColor *transparentGreen = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentGreen   redComponent], (CGFloat)0.0f,   @"Red component of transparent green should be 0.0");
	STAssertEquals([transparentGreen greenComponent], (CGFloat)1.0f, @"Green component of transparent green should be 1.0");
	STAssertEquals([transparentGreen  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent green should be 0.0");
	STAssertEquals([transparentGreen alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent green should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentCyanLowercase
{
	NSString *string = @"#00ffff00";
	NSColor *transparentCyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentCyan   redComponent], (CGFloat)0.0f,   @"Red component of transparent cyan should be 0.0");
	STAssertEquals([transparentCyan greenComponent], (CGFloat)1.0f, @"Green component of transparent cyan should be 1.0");
	STAssertEquals([transparentCyan  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent cyan should be 1.0");
	STAssertEquals([transparentCyan alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent cyan should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentCyanUppercase
{
	NSString *string = @"#00FFFF00";
	NSColor *transparentCyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentCyan   redComponent], (CGFloat)0.0f,   @"Red component of transparent cyan should be 0.0");
	STAssertEquals([transparentCyan greenComponent], (CGFloat)1.0f, @"Green component of transparent cyan should be 1.0");
	STAssertEquals([transparentCyan  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent cyan should be 1.0");
	STAssertEquals([transparentCyan alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent cyan should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentBlueLowercase
{
	NSString *string = @"#0000ff00";
	NSColor *transparentBlue = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlue   redComponent], (CGFloat)0.0f,   @"Red component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue greenComponent], (CGFloat)0.0f, @"Green component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent blue should be 1.0");
	STAssertEquals([transparentBlue alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent blue should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentBlueUppercase
{
	NSString *string = @"#0000FF00";
	NSColor *transparentBlue = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlue   redComponent], (CGFloat)0.0f,   @"Red component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue greenComponent], (CGFloat)0.0f, @"Green component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent blue should be 1.0");
	STAssertEquals([transparentBlue alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent blue should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentMagentaLowercase
{
	NSString *string = @"#ff00ff00";
	NSColor *transparentMagenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentMagenta   redComponent], (CGFloat)1.0f,   @"Red component of transparent magenta should be 1.0");
	STAssertEquals([transparentMagenta greenComponent], (CGFloat)0.0f, @"Green component of transparent magenta should be 0.0");
	STAssertEquals([transparentMagenta  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent magenta should be 1.0");
	STAssertEquals([transparentMagenta alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent magenta should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentMagentaUppercase
{
	NSString *string = @"#FF00FF00";
	NSColor *transparentMagenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentMagenta   redComponent], (CGFloat)1.0f,   @"Red component of transparent magenta should be 1.0");
	STAssertEquals([transparentMagenta greenComponent], (CGFloat)0.0f, @"Green component of transparent magenta should be 0.0");
	STAssertEquals([transparentMagenta  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent magenta should be 1.0");
	STAssertEquals([transparentMagenta alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent magenta should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentWhiteLowercase
{
	NSString *string = @"#ffffff00";
	NSColor *transparentWhite = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentWhite   redComponent], (CGFloat)1.0f,   @"Red component of transparent white should be 1.0");
	STAssertEquals([transparentWhite greenComponent], (CGFloat)1.0f, @"Green component of transparent white should be 1.0");
	STAssertEquals([transparentWhite  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent white should be 1.0");
	STAssertEquals([transparentWhite alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent white should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentWhiteUppercase
{
	NSString *string = @"#FFFFFF00";
	NSColor *transparentWhite = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentWhite   redComponent], (CGFloat)1.0f,   @"Red component of transparent white should be 1.0");
	STAssertEquals([transparentWhite greenComponent], (CGFloat)1.0f, @"Green component of transparent white should be 1.0");
	STAssertEquals([transparentWhite  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent white should be 1.0");
	STAssertEquals([transparentWhite alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent white should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentBlackLowercase
{
	NSString *string = @"#00000000";
	NSColor *transparentBlack = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlack   redComponent], (CGFloat)0.0f,   @"Red component of transparent black should be 0.0");
	STAssertEquals([transparentBlack greenComponent], (CGFloat)0.0f, @"Green component of transparent black should be 0.0");
	STAssertEquals([transparentBlack  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent black should be 0.0");
	STAssertEquals([transparentBlack alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent black should be 0.0");
}
- (void)testColorWith8DigitHTMLStringForTransparentBlackUppercase
{
	NSString *string = @"#00000000";
	NSColor *transparentBlack = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlack   redComponent], (CGFloat)0.0f,   @"Red component of transparent black should be 0.0");
	STAssertEquals([transparentBlack greenComponent], (CGFloat)0.0f, @"Green component of transparent black should be 0.0");
	STAssertEquals([transparentBlack  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent black should be 0.0");
	STAssertEquals([transparentBlack alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent black should be 0.0");
}

- (void)testColorWith4DigitHTMLStringForTransparentRedLowercase
{
	NSString *string = @"#f000";
	NSColor *transparentRed = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentRed   redComponent], (CGFloat)1.0f,   @"Red component of transparent red should be 1.0");
	STAssertEquals([transparentRed greenComponent], (CGFloat)0.0f, @"Green component of transparent red should be 0.0");
	STAssertEquals([transparentRed  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent red should be 0.0");
	STAssertEquals([transparentRed alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent red should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentRedUppercase
{
	NSString *string = @"#F000";
	NSColor *transparentRed = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentRed   redComponent], (CGFloat)1.0f,   @"Red component of transparent red should be 1.0");
	STAssertEquals([transparentRed greenComponent], (CGFloat)0.0f, @"Green component of transparent red should be 0.0");
	STAssertEquals([transparentRed  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent red should be 0.0");
	STAssertEquals([transparentRed alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent red should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentYellowLowercase
{
	NSString *string = @"#ff00";
	NSColor *transparentYellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentYellow   redComponent], (CGFloat)1.0f,   @"Red component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow greenComponent], (CGFloat)1.0f, @"Green component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent yellow should be 0.0");
	STAssertEquals([transparentYellow alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent yellow should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentYellowUppercase
{
	NSString *string = @"#FF00";
	NSColor *transparentYellow = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentYellow   redComponent], (CGFloat)1.0f,   @"Red component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow greenComponent], (CGFloat)1.0f, @"Green component of transparent yellow should be 1.0");
	STAssertEquals([transparentYellow  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent yellow should be 0.0");
	STAssertEquals([transparentYellow alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent yellow should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentGreenLowercase
{
	NSString *string = @"#0f00";
	NSColor *transparentGreen = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentGreen   redComponent], (CGFloat)0.0f,   @"Red component of transparent green should be 0.0");
	STAssertEquals([transparentGreen greenComponent], (CGFloat)1.0f, @"Green component of transparent green should be 1.0");
	STAssertEquals([transparentGreen  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent green should be 0.0");
	STAssertEquals([transparentGreen alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent green should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentGreenUppercase
{
	NSString *string = @"#0F00";
	NSColor *transparentGreen = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentGreen   redComponent], (CGFloat)0.0f,   @"Red component of transparent green should be 0.0");
	STAssertEquals([transparentGreen greenComponent], (CGFloat)1.0f, @"Green component of transparent green should be 1.0");
	STAssertEquals([transparentGreen  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent green should be 0.0");
	STAssertEquals([transparentGreen alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent green should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentCyanLowercase
{
	NSString *string = @"#0ff0";
	NSColor *transparentCyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentCyan   redComponent], (CGFloat)0.0f,   @"Red component of transparent cyan should be 0.0");
	STAssertEquals([transparentCyan greenComponent], (CGFloat)1.0f, @"Green component of transparent cyan should be 1.0");
	STAssertEquals([transparentCyan  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent cyan should be 1.0");
	STAssertEquals([transparentCyan alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent cyan should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentCyanUppercase
{
	NSString *string = @"#0FF0";
	NSColor *transparentCyan = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentCyan   redComponent], (CGFloat)0.0f,   @"Red component of transparent cyan should be 0.0");
	STAssertEquals([transparentCyan greenComponent], (CGFloat)1.0f, @"Green component of transparent cyan should be 1.0");
	STAssertEquals([transparentCyan  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent cyan should be 1.0");
	STAssertEquals([transparentCyan alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent cyan should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentBlueLowercase
{
	NSString *string = @"#00f0";
	NSColor *transparentBlue = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlue   redComponent], (CGFloat)0.0f,   @"Red component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue greenComponent], (CGFloat)0.0f, @"Green component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent blue should be 1.0");
	STAssertEquals([transparentBlue alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent blue should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentBlueUppercase
{
	NSString *string = @"#00F0";
	NSColor *transparentBlue = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlue   redComponent], (CGFloat)0.0f,   @"Red component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue greenComponent], (CGFloat)0.0f, @"Green component of transparent blue should be 0.0");
	STAssertEquals([transparentBlue  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent blue should be 1.0");
	STAssertEquals([transparentBlue alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent blue should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentMagentaLowercase
{
	NSString *string = @"#f0f0";
	NSColor *transparentMagenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentMagenta   redComponent], (CGFloat)1.0f,   @"Red component of transparent magenta should be 1.0");
	STAssertEquals([transparentMagenta greenComponent], (CGFloat)0.0f, @"Green component of transparent magenta should be 0.0");
	STAssertEquals([transparentMagenta  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent magenta should be 1.0");
	STAssertEquals([transparentMagenta alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent magenta should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentMagentaUppercase
{
	NSString *string = @"#F0F0";
	NSColor *transparentMagenta = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentMagenta   redComponent], (CGFloat)1.0f,   @"Red component of transparent magenta should be 1.0");
	STAssertEquals([transparentMagenta greenComponent], (CGFloat)0.0f, @"Green component of transparent magenta should be 0.0");
	STAssertEquals([transparentMagenta  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent magenta should be 1.0");
	STAssertEquals([transparentMagenta alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent magenta should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentWhiteLowercase
{
	NSString *string = @"#fff0";
	NSColor *transparentWhite = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentWhite   redComponent], (CGFloat)1.0f,   @"Red component of transparent white should be 1.0");
	STAssertEquals([transparentWhite greenComponent], (CGFloat)1.0f, @"Green component of transparent white should be 1.0");
	STAssertEquals([transparentWhite  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent white should be 1.0");
	STAssertEquals([transparentWhite alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent white should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentWhiteUppercase
{
	NSString *string = @"#FFF0";
	NSColor *transparentWhite = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentWhite   redComponent], (CGFloat)1.0f,   @"Red component of transparent white should be 1.0");
	STAssertEquals([transparentWhite greenComponent], (CGFloat)1.0f, @"Green component of transparent white should be 1.0");
	STAssertEquals([transparentWhite  blueComponent], (CGFloat)1.0f,  @"Blue component of transparent white should be 1.0");
	STAssertEquals([transparentWhite alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent white should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentBlackLowercase
{
	NSString *string = @"#0000";
	NSColor *transparentBlack = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlack   redComponent], (CGFloat)0.0f,   @"Red component of transparent black should be 0.0");
	STAssertEquals([transparentBlack greenComponent], (CGFloat)0.0f, @"Green component of transparent black should be 0.0");
	STAssertEquals([transparentBlack  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent black should be 0.0");
	STAssertEquals([transparentBlack alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent black should be 0.0");
}
- (void)testColorWith4DigitHTMLStringForTransparentBlackUppercase
{
	NSString *string = @"#0000";
	NSColor *transparentBlack = [NSColor colorWithHTMLString:string];
	STAssertEquals([transparentBlack   redComponent], (CGFloat)0.0f,   @"Red component of transparent black should be 0.0");
	STAssertEquals([transparentBlack greenComponent], (CGFloat)0.0f, @"Green component of transparent black should be 0.0");
	STAssertEquals([transparentBlack  blueComponent], (CGFloat)0.0f,  @"Blue component of transparent black should be 0.0");
	STAssertEquals([transparentBlack alphaComponent], (CGFloat)0.0f, @"Alpha component of transparent black should be 0.0");
}

//End of automatically-generated methods

#pragma mark -

- (void) testColorWithRGBAString
{
	NSString *string = @"rgba(255, 255, 0, 0.75)";
	NSColor *color = [NSColor colorWithHTMLString:string];
	STAssertEquals([color redComponent], (CGFloat)1.0f, @"Red component of color should be 1.0");
	STAssertEquals([color greenComponent], (CGFloat)1.0f, @"Green component of color should be 1.0");
	STAssertEquals([color blueComponent], (CGFloat)0.0f, @"Blue component of color should be 0.0");
	STAssertEquals([color alphaComponent], (CGFloat)0.75f, @"Alpha component of color should be 0.75");
}

#pragma mark -

- (void)testColorWithHTMLStringWithNil
{
	NSColor *noColor = [NSColor colorWithHTMLString:nil];
	STAssertEquals(noColor, (NSColor *)nil, @"Color from HTML string nil should be nil");
}
- (void)testColorWithHTMLStringWithEmptyString;
{
	NSColor *noColor = [NSColor colorWithHTMLString:@""];
	STAssertEquals(noColor, (NSColor *)nil, @"Color from the empty string should be nil");
}
- (void)testColorWithHTMLStringWithInvalidColor
{
	NSColor *noColor = [NSColor colorWithHTMLString:TEST_STRING_3];
	STAssertEquals(noColor, (NSColor *)nil, @"Color from invalid string '%@' should be nil", TEST_STRING_3);
}

#pragma mark -

- (void)testColorWithHTMLStringWithNilWithDefaultColorRed;
{
	NSColor *red = [NSColor redColor];
	NSColor *color = [NSColor colorWithHTMLString:nil defaultColor:red];
	STAssertEquals(color, red, @"colorWithHTMLString:defaultColor:, when passed nil and redColor, should return redColor");
}
- (void)testColorWithHTMLStringWithNilWithDefaultColorGreen;
{
	NSColor *green = [NSColor greenColor];
	NSColor *color = [NSColor colorWithHTMLString:nil defaultColor:green];
	STAssertEquals(color, green, @"colorWithHTMLString:defaultColor:, when passed nil and greenColor, should return greenColor");
}
- (void)testColorWithHTMLStringWithNilWithDefaultColorNil;
{
	NSColor *color = [NSColor colorWithHTMLString:nil defaultColor:nil];
	STAssertEquals(color, (NSColor *)nil, @"colorWithHTMLString:defaultColor:, when passed nil (string) and nil (default color), should return nil (default color)");
}

#pragma mark -

- (void)testColorWithHTMLStringWithEmptyStringWithDefaultColorRed
{
	NSColor *red = [NSColor redColor];
	NSColor *color = [NSColor colorWithHTMLString:@"" defaultColor:red];
	STAssertEquals(color, red, @"colorWithHTMLString:defaultColor:, when passed the empty string and redColor, should return redColor");
}
- (void)testColorWithHTMLStringWithEmptyStringWithDefaultColorGreen;
{
	NSColor *green = [NSColor greenColor];
	NSColor *color = [NSColor colorWithHTMLString:@"" defaultColor:green];
	STAssertEquals(color, green, @"colorWithHTMLString:defaultColor:, when passed the empty string and greenColor, should return greenColor");
}
- (void)testColorWithHTMLStringWithEmptyStringWithDefaultColorNil;
{
	NSColor *color = [NSColor colorWithHTMLString:@"" defaultColor:nil];
	STAssertEquals(color, (NSColor *)nil, @"colorWithHTMLString:defaultColor:, when passed the empty string and nil, should return nil");
}

#pragma mark -

- (void)testColorWithHTMLStringWithInvalidColorWithDefaultColorRed
{
	NSColor *red = [NSColor redColor];
	NSColor *color = [NSColor colorWithHTMLString:TEST_STRING_4 defaultColor:red];
	STAssertEquals(color, red, @"colorWithHTMLString:defaultColor:, when passed an invalid string and redColor, should return redColor");
}
- (void)testColorWithHTMLStringWithInvalidColorWithDefaultColorGreen
{
	NSColor *green = [NSColor greenColor];
	NSColor *color = [NSColor colorWithHTMLString:TEST_STRING_5 defaultColor:green];
	STAssertEquals(color, green, @"colorWithHTMLString:defaultColor:, when passed an invalid string and greenColor, should return greenColor");
}
- (void)testColorWithHTMLStringWithInvalidColorWithDefaultColorNil
{
	NSColor *blue = [NSColor blueColor];
	NSColor *color = [NSColor colorWithHTMLString:TEST_STRING_6 defaultColor:blue];
	STAssertEquals(color, blue, @"colorWithHTMLString:defaultColor:, when passed an invalid string and blueColor, should return blueColor");
}

@end