Bamboo.Prevalence.Collections.Tests.ReaderWriterListTestCase.TestApply C# (CSharp) 메소드

TestApply() 개인적인 메소드

private TestApply ( ) : void
리턴 void
		public void TestApply()
		{
			_list.Apply(new Action(MakeUpperName));
			AssertSame(_customer1, _list[0]);
			AssertSame(_customer2, _list[1]);
			AssertEquals("BAMBOO", _customer1.Name);
			AssertEquals("PREVALENCE", _customer2.Name);
		}