public void TestGet()
        {
            var dictionary = new PinkoDictionary<string, string>();

            Assert.IsNotNull(dictionary.Get("k1", () => "value1"));
            Assert.IsNull(dictionary.Get("k1", () => "value2"));
            Assert.IsNotNull(dictionary.Get("k2", () => "value1"));
        }