internal static ITfsXmlSerializableWrapper GetInstance()
        {
            ITfsXmlSerializable real = default(ITfsXmlSerializable);

            RealInstanceFactory(ref real);
            var instance = (ITfsXmlSerializableWrapper)ITfsXmlSerializableWrapper.GetWrapper(real);

            InstanceFactory(ref instance);
            if (instance == null)
            {
                Assert.Inconclusive("Could not Create Test Instance");
            }
            return(instance);
        }
 static partial void RealInstanceFactory(ref ITfsXmlSerializable real, string callerName)
 {
     real = new TemporaryMock();
 }
 static partial void RealInstanceFactory(ref ITfsXmlSerializable real, [CallerMemberName] string callerName = "");