コード例 #1
0
 public override void SetUp()
 {
     ElementValue = integerElementValue.ToString();
     base.SetUp();
     Attribute = null;
     Result    = XElementToTest.GetIntValue(Attribute, DefaultValue);
 }
コード例 #2
0
 public override void SetUp()
 {
     ElementValue = "not_a_integer";
     base.SetUp();
     Attribute = null;
     Result    = XElementToTest.GetIntValue(Attribute, DefaultValue);
 }
コード例 #3
0
 public override void SetUp()
 {
     base.SetUp();
     Attribute = "not_exists";
     Result    = XElementToTest.GetIntValue(Attribute, DefaultValue);
 }
コード例 #4
0
 public override void SetUp()
 {
     base.SetUp();
     XElementToTest = null;
     Result         = XElementToTest.GetIntValue(Attribute, DefaultValue);
 }