예제 #1
0
        public void checkInputValuesFalseTest()
        {
            int n = 5;
            int k = 2;

            Boolean result = AbsolutePermutation.checkInputValues(n, k);

            Assert.AreEqual(false, result);
        }
예제 #2
0
        public void checkInputValuesTrueFor0Test()
        {
            int n = 1;
            int k = 0;

            Boolean result = AbsolutePermutation.checkInputValues(n, k);

            Assert.AreEqual(true, result);
        }