public void findMinMaxTest() { Bitmap bitmap = new Bitmap(3, 1); StatistikModel target = new StatistikModel(bitmap); int grey = 0; target.findMinMax(grey); Assert.AreEqual(target.get_max_value(), 0); }
public void get_max_valueTest() { Bitmap bitmap = new Bitmap(3, 1); StatistikModel target = new StatistikModel(bitmap); int expected = 0; // TODO: Passenden Wert initialisieren int actual; actual = target.get_max_value(); Assert.AreEqual(expected, actual); }