public void DeleteNodeReactiveLoadTest()
 {
     NodeReactiveLoadDataManager target = new NodeReactiveLoadDataManager(); // TODO: Initialize to an appropriate value
     NodeReactiveLoadDto dto = null; // TODO: Initialize to an appropriate value
     target.DeleteNodeReactiveLoad(dto);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void GetAllNodeReactiveLoadsTest()
 {
     NodeReactiveLoadDataManager target = new NodeReactiveLoadDataManager(); // TODO: Initialize to an appropriate value
     List<NodeReactiveLoadDto> expected = null; // TODO: Initialize to an appropriate value
     List<NodeReactiveLoadDto> actual;
     actual = target.GetAllNodeReactiveLoads();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void AnnullValuesTest()
 {
     NodeReactiveLoadDataManager target = new NodeReactiveLoadDataManager(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.AnnullValues();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void NodeReactiveLoadDataManagerConstructorTest()
 {
     NodeReactiveLoadDataManager target = new NodeReactiveLoadDataManager();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Esempio n. 5
0
        private void InitializeCurrentValues()
        {
            AppendMessageToActionInformation(System.DateTime.Now.ToLongDateString() + " - " + System.DateTime.Now.ToLongTimeString() + ": " + "Init all current values...");

            NodeActiveLoadDataManager nodeActiveLoadDataManager = new NodeActiveLoadDataManager();
            AppendMessageToActionInformation (nodeActiveLoadDataManager.InitializeValues());
            AppendMessageToActionInformation(System.DateTime.Now.ToLongDateString() + " - " + System.DateTime.Now.ToLongTimeString() + ": " + "Current node active loads are initialized.");

            NodeReactiveLoadDataManager nodeReactiveLoadDataManager = new NodeReactiveLoadDataManager();
            AppendMessageToActionInformation(nodeReactiveLoadDataManager.InitializeValues());
            AppendMessageToActionInformation(System.DateTime.Now.ToLongDateString() + " - " + System.DateTime.Now.ToLongTimeString() + ": " + "Current node reactive loads are initialized.");

            BranchResistanceDataManager branchResistanceDataManager = new BranchResistanceDataManager();
            AppendMessageToActionInformation(branchResistanceDataManager.InitializeValues());
            AppendMessageToActionInformation(System.DateTime.Now.ToLongDateString() + " - " + System.DateTime.Now.ToLongTimeString() + ": " + "Current branch resistances are initialized.");

            BranchReactanceDataManager branchReactanceDataManager = new BranchReactanceDataManager();
            AppendMessageToActionInformation(branchReactanceDataManager.InitializeValues());
            AppendMessageToActionInformation(System.DateTime.Now.ToLongDateString() + " - " + System.DateTime.Now.ToLongTimeString() + ": " + "Current branch reactances are initialized.");
            AppendMessageToActionInformation("\r\nAll current values initialized.");
        }
Esempio n. 6
0
        private void AnnullCurrentValues()
        {
            AppendMessageToActionInformation(System.DateTime.Now.ToLongDateString() + " - " + System.DateTime.Now.ToLongTimeString() + ": " + "Annulling all current values...");

            NodeActiveLoadDataManager nodeActiveLoadDataManager = new NodeActiveLoadDataManager();
            AppendMessageToActionInformation(nodeActiveLoadDataManager.AnnullValues());
            AppendMessageToActionInformation(System.DateTime.Now.ToLongDateString() + " - " + System.DateTime.Now.ToLongTimeString() + ": " + "Current node active loads are annulled.");

            NodeReactiveLoadDataManager nodeReactiveLoadDataManager = new NodeReactiveLoadDataManager();
            AppendMessageToActionInformation(nodeReactiveLoadDataManager.AnnullValues());
            AppendMessageToActionInformation(System.DateTime.Now.ToLongDateString() + " - " + System.DateTime.Now.ToLongTimeString() + ": " + "Current node reactive loads are annulled.");

            BranchResistanceDataManager branchResistanceDataManager = new BranchResistanceDataManager();
            AppendMessageToActionInformation(branchResistanceDataManager.AnnullValues());
            AppendMessageToActionInformation(System.DateTime.Now.ToLongDateString() + " - " + System.DateTime.Now.ToLongTimeString() + ": " + "Current branch resistances are annulled.");

            BranchReactanceDataManager branchReactanceDataManager = new BranchReactanceDataManager();
            AppendMessageToActionInformation(branchReactanceDataManager.AnnullValues());
            AppendMessageToActionInformation(System.DateTime.Now.ToLongDateString() + " - " + System.DateTime.Now.ToLongTimeString() + ": " + "Current branch reactances are annulled.");

            AppendMessageToActionInformation("\r\nAll current values annulled. \nSmart Grid is stopped.");
        }