static partial void RealInstanceFactory(ref StoredQueriesChangedEventArgs real, string callerName)
        {
            StoredQuery         storedQuery = null;
            StoredQueriesAction action      = default(StoredQueriesAction);

            real = new StoredQueriesChangedEventArgs(storedQuery, action);
        }
Exemple #2
0
        internal static StoredQueriesChangedEventArgsWrapper GetInstance()
        {
            StoredQueriesChangedEventArgs real = default(StoredQueriesChangedEventArgs);

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

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