public void TestTimeSpanTypeParseValue() { var nullValueNode = new NullValueNode(null); var timeSpanValueNode = new TimeSpanValueNode(NodeKind.ScalarTypeDefinition, TimeSpan.Parse("01:01:01"), null); Assert.IsInstanceOfType(nullValueNode, TimeSpanType.ParseValue("").GetType()); Assert.IsInstanceOfType(timeSpanValueNode, TimeSpanType.ParseValue("01:01:01").GetType()); Assert.IsInstanceOfType(timeSpanValueNode, TimeSpanType.ParseValue("01:01:01").GetType()); Assert.ThrowsException <ArgumentException>(() => TimeSpanType.ParseValue("undefined")); }
public void InitTestDefault() { TimeSpanValueNode = new TimeSpanValueNode(NodeKind.ScalarTypeExtension, TimeSpan.Parse("01:01:01"), null); }