Exemplo n.º 1
0
		public virtual void TestStringItem()
		{
			MarshallingContextTestCase.StringItem writtenItem = new MarshallingContextTestCase.StringItem
				("one");
			MarshallingContextTestCase.StringItem readItem = (MarshallingContextTestCase.StringItem
				)WriteAndRead(writtenItem);
			Assert.AreEqual(writtenItem._name, readItem._name);
		}
Exemplo n.º 2
0
 public virtual void TestStringItem()
 {
     MarshallingContextTestCase.StringItem writtenItem = new MarshallingContextTestCase.StringItem
                                                             ("one");
     MarshallingContextTestCase.StringItem readItem = (MarshallingContextTestCase.StringItem
                                                       )WriteAndRead(writtenItem);
     Assert.AreEqual(writtenItem._name, readItem._name);
 }