internal static NodeWrapper GetInstance()
        {
            Node real = default(Node);

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

            InstanceFactory(ref instance);
            if (instance == null)
            {
                Assert.Inconclusive("Could not Create Test Instance");
            }
            return(instance);
        }