コード例 #1
0
        public void TestMin3()
        {
            int min = StatisticalMethods.Min(-902);

            Assert.AreEqual(-902, min);
        }
コード例 #2
0
        public void TestMin4()
        {
            int min = StatisticalMethods.Min(7, 6, 0, 9);

            Assert.AreEqual(0, min);
        }
コード例 #3
0
        public void TestMin2()
        {
            int min = StatisticalMethods.Min();

            Assert.Fail();
        }