Exemplo n.º 1
0
		protected static void EqualTo(AckResult source, ErrorReceiptCode target)
		{
			Assert.IsNotNull(source);
			Assert.IsNotNull(target);

			Assert.That(source.errorcode, Is.EqualTo(target.errorcode));
		}
Exemplo n.º 2
0
		protected static void EqualTo(AckResult source, ErrorReceiptCode target, string arg0, string arg1, string arg2)
		{
			Assert.IsNotNull(source);
			Assert.IsNotNull(target);

			Assert.That(source.errorcode, Is.EqualTo(target.errorcode));
			var Value = string.Format(target.Value, arg0, arg1, arg2);
			Assert.That(source.Value, Is.EqualTo(Value));
		}
Exemplo n.º 3
0
		public void TestCreate()
		{
			var type = new AckResult();
			Assert.That(type.errorcode, Is.EqualTo((ulong)0));
			Assert.IsNullOrEmpty(type.Value);
		}
Exemplo n.º 4
0
		public static bool LoadFromFile(string fileName, out AckResult obj)
		{
			System.Exception exception = null;
			return LoadFromFile(fileName, out obj, out exception);
		}
Exemplo n.º 5
0
		public static bool LoadFromFile(string fileName, out AckResult obj, out System.Exception exception)
		{
			return LoadFromFile(fileName, Encoding.UTF8, out obj, out exception);
		}
Exemplo n.º 6
0
		/// <summary>
		/// Deserializes xml markup from file into an AckResult object
		/// </summary>
		/// <param name="fileName">string xml file to load and deserialize</param>
		/// <param name="obj">Output AckResult object</param>
		/// <param name="exception">output Exception value if deserialize failed</param>
		/// <returns>true if this XmlSerializer can deserialize the object; otherwise, false</returns>
		public static bool LoadFromFile(string fileName, System.Text.Encoding encoding, out AckResult obj, out System.Exception exception)
		{
			exception = null;
			obj = default(AckResult);
			try
			{
				obj = LoadFromFile(fileName, encoding);
				return true;
			}
			catch ( System.Exception ex )
			{
				exception = ex;
				return false;
			}
		}
Exemplo n.º 7
0
		public static bool Deserialize(string xml, out AckResult obj)
		{
			System.Exception exception = null;
			return Deserialize(xml, out obj, out exception);
		}
Exemplo n.º 8
0
		/// <summary>
		/// Deserializes workflow markup into an AckResult object
		/// </summary>
		/// <param name="xml">string workflow markup to deserialize</param>
		/// <param name="obj">Output AckResult object</param>
		/// <param name="exception">output Exception value if deserialize failed</param>
		/// <returns>true if this XmlSerializer can deserialize the object; otherwise, false</returns>
		public static bool Deserialize(string xml, out AckResult obj, out System.Exception exception)
		{
			exception = null;
			obj = default(AckResult);
			try
			{
				obj = Deserialize(xml);
				return true;
			}
			catch ( System.Exception ex )
			{
				exception = ex;
				return false;
			}
		}
Exemplo n.º 9
0
		protected static void EqualTo(AckResult source, AckResult target)
		{
			Assert.IsNotNull(source);
			Assert.IsNotNull(target);

			Assert.That(source.errorcode, Is.EqualTo(target.errorcode));
			Assert.That(source.Value, Is.EqualTo(target.Value));
		}