public void MapsWithSimplValuesCompareCorrectly()
        {
            var instanceOne = MapsWithinMaps.CreateObject();
            var instanceTwo = MapsWithinMaps.CreateObject();

            var instanceOneDictionary = instanceOne.entriesByTag;
            var instanceTwoDictionary = instanceTwo.entriesByTag;

            TestMethods.AssertSimplTypesEqual(instanceOneDictionary, instanceTwoDictionary, "Dictionaries should be the same");
            TestMethods.AssertSimplTypesEqual(instanceOne, instanceTwo, "Instances should be the same.");
        }