예제 #1
0
파일: BagTest.cs 프로젝트: fmedio/Peach
        public void TestPut()
        {
            var bag = new Bag<string, string>();
            bag["foo"] = "hello";
            bag["foo"] = "world";

            Assert.AreEqual("hello", bag["foo"]);
            Assert.AreEqual(2, bag.GetValues("foo").Count());
        }