Esempio n. 1
0
 public void SetPixel()
 {
     BufferImage img = new BufferImage(16, 16);
     img.SetPixel(3, 3, GREEN);
     Assert.AreEqual(GREEN, img.GetPixel(3, 3));
 }