public void InsertUserTypeTest()
 {
     UserTypeDataManager target = new UserTypeDataManager(); // TODO: Initialize to an appropriate value
     UserTypeDto dto = null; // TODO: Initialize to an appropriate value
     target.InsertUserType(dto);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void GetAllUserTypesTest()
 {
     UserTypeDataManager target = new UserTypeDataManager(); // TODO: Initialize to an appropriate value
     List<UserTypeDto> expected = null; // TODO: Initialize to an appropriate value
     List<UserTypeDto> actual;
     actual = target.GetAllUserTypes();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void UserTypeDataManagerConstructorTest()
 {
     UserTypeDataManager target = new UserTypeDataManager();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }