//Rule to get Define And TestStubPage
        public static BuilderPackageInterface getDefineAndTestStubPage()
        {
            if (userPreviousConfig.ContainsKey("getDefineAndTestStubPage"))
            {
                return(userPreviousConfig["getDefineAndTestStubPage"]);
            }

            XMLReader ContextValues = new XMLReader();

            ContextValues.parseXML();

            TestStub myTestStub = new TestStub(ContextValues.testStub);

            AddExpression myContext = new AddExpression();

            myContext.setAddExpression(null);
            myContext.setAddExpression(myTestStub);
            userPreviousConfig["getDefineAndTestStubPage"] = myContext;
            return(myContext);
        }