public void GetUserDetailsOnUserIdTest() { UserInfoManager target = new UserInfoManager(); // TODO: Initialize to an appropriate value int userId = 9; // TODO: Initialize to an appropriate value Users expected = new Users(); expected.UserType = 2;// TODO: Initialize to an appropriate value Users actual = new Users(); actual = target.GetUserDetailsOnUserId(userId); Assert.AreEqual(expected.UserType, actual.UserType); //Assert.Inconclusive("Verify the correctness of this test method."); }