コード例 #1
0
ファイル: Test1Them.cs プロジェクト: Promenlt/CNPM-20201
        public void Test7_ThemCanBo()
        {
            //Giả định đúng 1: Thêm tài khoản
            var resultT1 = _sourceCode.AddTaiKhoan("ductrongth", "mrtrong", "12/12/1995", 1, "Trần Đức Trọng");

            //Giả định sai 1: Trùng tên tài khoản
            var resultF1 = _sourceCode.AddTaiKhoan("ductrongth", "mrtrong", "12/12/1995", 1, "Trần Đức Trọng");

            Assert.IsTrue(resultT1);
            Assert.IsFalse(resultF1);
        }