public void TestCreateValue() { NxArgument argValue = new NxArgument("some value", false); string expected = "<Argument value=\"some value\" />"; string actual = argValue.Create().OuterXml; Assert.AreEqual(expected, actual); }
public void TestCreateValueId() { NxArgument argValueId = new NxArgument("valId", true); string expected = "<Argument valueId=\"valId\" />"; string actual = argValueId.Create().OuterXml; Assert.AreEqual(expected, actual); }