Exemple #1
0
        public void ThreeNumberTest()
        {
            Rack rack = new Rack();

            int[] rackArray = rack.DrawThreeBalls();

            int[] expectedOutput = new int[] { 1, 2, 3 };

            CollectionAssert.AreEqual(rackArray, expectedOutput);
        }