public void InsertNodeVoltageTest()
 {
     NodeVoltageDataManager target = new NodeVoltageDataManager(); // TODO: Initialize to an appropriate value
     NodeVoltageDto dto = null; // TODO: Initialize to an appropriate value
     target.InsertNodeVoltage(dto);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void GetAllNodeVoltagesTest()
 {
     NodeVoltageDataManager target = new NodeVoltageDataManager(); // TODO: Initialize to an appropriate value
     List<NodeVoltageDto> expected = null; // TODO: Initialize to an appropriate value
     List<NodeVoltageDto> actual;
     actual = target.GetAllNodeVoltages();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void NodeVoltageDataManagerConstructorTest()
 {
     NodeVoltageDataManager target = new NodeVoltageDataManager();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }