Beispiel #1
0
        public void LegendRankB()
        {
            var bmp = new Bitmap("RankedDetection/TestFiles/LegendB.png");

            Assert.AreEqual(0, RankDetection.FindBest(bmp));
        }
Beispiel #2
0
        // Helper Methods

        private bool RankIsCorrect(int rank)
        {
            var bmp = new Bitmap("RankedDetection/TestFiles/" + rank + ".png");

            return(rank == RankDetection.FindBest(bmp));
        }