Exemplo n.º 1
0
 public void toColorTest()
 {
     RColor target = new RColor(0,128,0,255); // TODO: Initialize to an appropriate value
     Color expected = Color.FromArgb(0,128,0,255); // TODO: Initialize to an appropriate value
     Color actual;
     actual = target.toColor();
     Assert.AreEqual(expected, actual);
 }