Test.StudentModelTest.authenticateTest C# (CSharp) Méthode

authenticateTest() private méthode

private authenticateTest ( ) : void
Résultat void
        public void authenticateTest()
        {
            string matricId = "test";
            string password = "test";

            bool expected = true;
            bool actual;
            actual = StudentModel.authenticate(matricId, password);

            Assert.AreEqual(expected, actual);
        }