public void TestLoadandSearchAttributeData()
        {
            attributeData = GameDataStorageLayerTestUtils.fillAttributeObjectWithData();
            string keyToSearch = "testChar:attributes";
            Tuple <string, Tuple <string, int> > t = attributeData[keyToSearch].searchForKey("testChar:attributes:Strength");

            Assert.AreEqual("testChar:attributes:Strength", t.Item1);
            Assert.AreEqual(10, t.Item2.Item2);
            Assert.AreEqual("testChar/attributes/Strength", t.Item2.Item1);
        }