Beispiel #1
0
        public void Test3_ThemTienAnTienSu()
        {
            _sourceCode.SetForeignKey("0");
            _sourceCode.ClearAllValues("TIENANTIENSU");
            _sourceCode.SetForeignKey("1");

            //Giả định đúng 1: Thêm mã tiền án tiền sự
            var resultT1 = _sourceCode.AddTienAnTienSu("TATS-1", "MNK-1", "Giết người cướp tài sản", "TPHCM", "16/09/1995");

            //Giả định sai 1: Trùng mã tiền án tiền sự
            var resultF1 = _sourceCode.AddTienAnTienSu("TATS-1", "MNK-1", "Giết người cướp tài sản", "TPHCM", "16/09/1995");

            //Giả định sai 2: mã nhân khẩu không tồn tại
            var resultF2 = _sourceCode.AddTienAnTienSu("TATS-2", "MNK-10", "Giết người cướp tài sản", "TPHCM", "16/09/1995");

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