App.Core.Tests.Services.MembershipServiceTest.GetUserTest C# (CSharp) Method

GetUserTest() private method

private GetUserTest ( ) : void
return void
        public void GetUserTest()
        {
            IMembershipContext membershipContext = null; // TODO: Initialize to an appropriate value
            IMembershipService target = new MembershipService(membershipContext); // TODO: Initialize to an appropriate value
            int userID = 0; // TODO: Initialize to an appropriate value
            bool NoTracking = false; // TODO: Initialize to an appropriate value
            User expected = null; // TODO: Initialize to an appropriate value
            User actual;
            actual = target.GetUser(userID, NoTracking);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
MembershipServiceTest