public void GetAllSnipesTest()
        {
            SL_User target = new SL_User(); // TODO: Initialize to an appropriate value
            List<Snipe> expected = null; // TODO: Initialize to an appropriate value
            List<Snipe> actual;

            target.UserLogin("Test", "Test", false,0);
            try
            {
                actual = target.GetAllSnipes();
                Assert.AreEqual(true, true);
            }
            catch
            { Assert.AreEqual(false, true);
            }
        }
 public void UserLoginTest()
 {
     SL_User target = new SL_User(); // TODO: Initialize to an appropriate value
     string userName = string.Empty; // TODO: Initialize to an appropriate value
     string userPassword = string.Empty; // TODO: Initialize to an appropriate value
     target.UserLogin(userName, userPassword, false, 0);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }