AWSSDK.UnitTests.LruListTest.LruList_AddEmpty C# (CSharp) Method

LruList_AddEmpty() private method

private LruList_AddEmpty ( ) : void
return void
        public void LruList_AddEmpty()
        {
            var lruList = new LruList<string, string>();
            var item1 = new LruListItem<string, string>("key1", "value1");
            lruList.Add(item1);
            AssertListState(lruList, item1);
        }