Example #1
0
 public void NodesTest()
 {
     NodeType target = new NodeType(); // TODO: Initialize to an appropriate value
     EntityCollection<Node> expected = null; // TODO: Initialize to an appropriate value
     EntityCollection<Node> actual;
     target.Nodes = expected;
     actual = target.Nodes;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Example #2
0
 public void IdTest()
 {
     NodeType target = new NodeType(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     target.Id = expected;
     actual = target.Id;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the NodeTypes EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToNodeTypes(NodeType nodeType)
 {
     base.AddObject("NodeTypes", nodeType);
 }
 /// <summary>
 /// Create a new NodeType object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="typeName">Initial value of the TypeName property.</param>
 public static NodeType CreateNodeType(global::System.Int32 id, global::System.String typeName)
 {
     NodeType nodeType = new NodeType();
     nodeType.Id = id;
     nodeType.TypeName = typeName;
     return nodeType;
 }
Example #5
0
 public void NodeTypeConstructorTest()
 {
     NodeType target = new NodeType();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Example #6
0
 public void TypeNameTest()
 {
     NodeType target = new NodeType(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.TypeName = expected;
     actual = target.TypeName;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Example #7
0
        /// <summary>
        /// Insert specified NodeType in database
        /// </summary>
        /// <param name="dto">dto data for NodeType</param>
        public void InsertNodeType(NodeTypeDto dto)
        {
            try
            {
                //Before any action, it must be updated because calls from contract uses
                //only one instance of UserManager.
                dbContext.Refresh(System.Data.Objects.RefreshMode.StoreWins, dbContext.NodeTypes);
                NodeType nt = new NodeType();

                nt.Id = dto.Id;
                nt.TypeName = dto.TypeName;

                //Adds new NodeType details to context
                dbContext.NodeTypes.AddObject(nt);

                //saves changes.
                dbContext.SaveChanges();
            }
            catch (Exception exception)
            {
                throw new Exception("SmartGridDataMenagers: " + exception.Message);
            }
        }