Inheritance: System.Attribute
 public void MessageAttributeConstructorTest()
 {
     string name = string.Empty; // TODO: Initialize to an appropriate value
     byte number = 0; // TODO: Initialize to an appropriate value
     MessageAttribute target = new MessageAttribute(name, number);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Example #2
0
 [Ignore] // placeholder
 public void NumberTest()
 {
     string name = string.Empty; // TODO: Initialize to an appropriate value
     byte number = 0; // TODO: Initialize to an appropriate value
     MessageAttribute target = new MessageAttribute(name, number); // TODO: Initialize to an appropriate value
     byte expected = 0; // TODO: Initialize to an appropriate value
     target.Number = expected;
     var actual = target.Number;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }