internal static QueryHierarchyProviderWrapper GetInstance()
        {
            QueryHierarchyProvider real = default(QueryHierarchyProvider);

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

            InstanceFactory(ref instance);
            if (instance == null)
            {
                Assert.Inconclusive("Could not Create Test Instance");
            }
            return(instance);
        }
        static partial void RealInstanceFactory(ref QueryHierarchyProvider real, string callerName)
        {
            WorkItemStore store = WorkItemStoreWrapper_UnitTests.GetRealInstance();

            real = new QueryHierarchyProvider(store);
        }
 static partial void RealInstanceFactory(ref QueryHierarchyProvider real, [CallerMemberName] string callerName = "");