Example #1
0
        public void Test_InsertUserClass_GetCommandMethod_Returns_A_Bool()
        {
            Initialiser();
            bool result = addUser.GetCommand(user, 2);

            Assert.IsInstanceOf(typeof(bool), result);
        }
Example #2
0
 public bool InsertUser(List<DbUser> user, int stream_id)
 {
     InsertUser insUser = new InsertUser();
     return insUser.GetCommand(user, stream_id);
 }