public virtual void TestIndependentObjectConfigs()
        {
            IEmbeddedConfiguration config       = NewConfiguration();
            IObjectClass           objectConfig = config.Common.ObjectClass(typeof(GlobalVsNonStaticConfigurationTestCase.Data
                                                                                   ));

            objectConfig.Translate(new TNull());
            IEmbeddedConfiguration otherConfig = NewConfiguration();

            Assert.AreNotSame(config, otherConfig);
            Config4Class otherObjectConfig = (Config4Class)otherConfig.Common.ObjectClass(typeof(
                                                                                              GlobalVsNonStaticConfigurationTestCase.Data));

            Assert.AreNotSame(objectConfig, otherObjectConfig);
            Assert.IsNull(otherObjectConfig.GetTranslator());
        }