Esempio n. 1
0
        public void TaoBo4So_WithValidate()
        {
            //List<int> maxVal = new List<int>() { 2, 5, 5, 5, 4 };
            List <int> maxVal = new List <int>()
            {
                3, 2, 2, 5, 4
            };
            BoSo boSo = new BoSo(maxVal, validate);

            Assert.IsTrue(boSo.DanhSachKetQua.Count != 0);
        }
Esempio n. 2
0
        public void TaoBo4So()
        {
            //List<int> maxVal = new List<int>() { 4, 5, 5, 5 };
            List <int> maxVal = new List <int>()
            {
                2, 5, 5, 5, 4
            };
            BoSo boSo = new BoSo(maxVal);

            Assert.IsTrue(boSo.DanhSachKetQua.Count != 0);
        }