Ejemplo n.º 1
0
 public override void SetUp()
 {
     ElementValue = integerElementValue.ToString();
     base.SetUp();
     Attribute = null;
     Result    = XElementToTest.GetIntValue(Attribute, DefaultValue);
 }
Ejemplo n.º 2
0
 public override void SetUp()
 {
     ElementValue = "not_a_integer";
     base.SetUp();
     Attribute = null;
     Result    = XElementToTest.GetIntValue(Attribute, DefaultValue);
 }
Ejemplo n.º 3
0
 public override void SetUp()
 {
     base.SetUp();
     Attribute = "not_exists";
     Result    = XElementToTest.GetIntValue(Attribute, DefaultValue);
 }
Ejemplo n.º 4
0
 public override void SetUp()
 {
     base.SetUp();
     XElementToTest = null;
     Result         = XElementToTest.GetIntValue(Attribute, DefaultValue);
 }