18 references to _yellowToRedColorMap
System.Drawing.Common.Tests (18)
System\Drawing\Imaging\ImageAttributesTests.cs (18)
1174imageAttr.SetRemapTable(_yellowToRedColorMap);
1175bitmap.SetPixel(0, 0, _yellowToRedColorMap[0].OldColor);
1177Assert.Equal(_yellowToRedColorMap[0].NewColor, bitmap.GetPixel(0, 0));
1187imageAttr.SetRemapTable(_yellowToRedColorMap, type);
1188bitmap.SetPixel(0, 0, _yellowToRedColorMap[0].OldColor);
1190Assert.Equal(_yellowToRedColorMap[0].NewColor, bitmap.GetPixel(0, 0));
1200imageAttr.SetRemapTable(_yellowToRedColorMap, type);
1201bitmap.SetPixel(0, 0, _yellowToRedColorMap[0].OldColor);
1203Assert.Equal(_yellowToRedColorMap[0].OldColor, bitmap.GetPixel(0, 0));
1212AssertExtensions.Throws<ArgumentException>(null, () => imageAttr.SetRemapTable(_yellowToRedColorMap));
1213AssertExtensions.Throws<ArgumentException>(null, () => imageAttr.SetRemapTable(_yellowToRedColorMap, ColorAdjustType.Default));
1221AssertExtensions.ThrowsAny<ArgumentNullException, ArgumentException>(() => imageAttr.SetRemapTable(_yellowToRedColorMap, type));
1251imageAttr.SetRemapTable(_yellowToRedColorMap);
1253bitmap.SetPixel(0, 0, _yellowToRedColorMap[0].OldColor);
1255Assert.Equal(_yellowToRedColorMap[0].OldColor, bitmap.GetPixel(0, 0));
1265imageAttr.SetRemapTable(_yellowToRedColorMap, type);
1267bitmap.SetPixel(0, 0, _yellowToRedColorMap[0].OldColor);
1269Assert.Equal(_yellowToRedColorMap[0].OldColor, bitmap.GetPixel(0, 0));