public void InsertNodeTypeTest()
 {
     NodeTypeDataManager target = new NodeTypeDataManager(); // TODO: Initialize to an appropriate value
     NodeTypeDto dto = null; // TODO: Initialize to an appropriate value
     target.InsertNodeType(dto);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void GetAllNodeTypesTest()
 {
     NodeTypeDataManager target = new NodeTypeDataManager(); // TODO: Initialize to an appropriate value
     List<NodeTypeDto> expected = null; // TODO: Initialize to an appropriate value
     List<NodeTypeDto> actual;
     actual = target.GetAllNodeTypes();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void NodeTypeDataManagerConstructorTest()
 {
     NodeTypeDataManager target = new NodeTypeDataManager();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }