internal static TfsClientCredentialStorageWrapper GetInstance()
        {
            var real = new TfsClientCredentialStorage();

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

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