Inheritance: System.Attribute
Exemplo n.º 1
0
 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");
 }
Exemplo n.º 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.");
 }