public void CreateProfileFunctionTest()
 {
     ProfileFunctionBusiness target = new ProfileFunctionBusiness(); // TODO: Initialize to an appropriate value
     SessionInfo sessioninfo = null; // TODO: Initialize to an appropriate value
     MA_PROFILE_FUNCTIONAL profilefunction = null; // TODO: Initialize to an appropriate value
     MA_PROFILE_FUNCTIONAL expected = null; // TODO: Initialize to an appropriate value
     MA_PROFILE_FUNCTIONAL actual;
     actual = target.CreateProfileFunction(sessioninfo, profilefunction);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void GetProfileFunctionByFilterTest()
 {
     ProfileFunctionBusiness target = new ProfileFunctionBusiness(); // TODO: Initialize to an appropriate value
     SessionInfo sessioninfo = null; // TODO: Initialize to an appropriate value
     string strprofile = string.Empty; // TODO: Initialize to an appropriate value
     string strfunction = string.Empty; // TODO: Initialize to an appropriate value
     int startIndex = 0; // TODO: Initialize to an appropriate value
     int count = 0; // TODO: Initialize to an appropriate value
     string sorting = string.Empty; // TODO: Initialize to an appropriate value
     List<MA_PROFILE_FUNCTIONAL> expected = null; // TODO: Initialize to an appropriate value
     List<MA_PROFILE_FUNCTIONAL> actual;
     actual = target.GetProfileFunctionByFilter(sessioninfo, strprofile, strfunction, startIndex, count, sorting);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ProfileFunctionBusinessConstructorTest()
 {
     ProfileFunctionBusiness target = new ProfileFunctionBusiness();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }