Package org.xwiki.test.integration

Examples of org.xwiki.test.integration.XWikiTestSetup


        addTestCase(suite, XWikiClassesTest.class);
        addTestCase(suite, XWikiObjectsTest.class);
        addTestCase(suite, SearchTest.class);
        addTestCase(suite, RenderingTest.class);

        return new XWikiTestSetup(suite);
    }
View Full Code Here


        addTestCase(suite, RegularUserTest.class);
        addTestCase(suite, ImportTest.class);
        addTestCase(suite, EmbedTest.class);
        addTestCase(suite, EditInlineTest.class);

        return new XWikiSeleniumTestSetup(new XWikiTestSetup(new WysiwygTestSetup(suite)));
    }
View Full Code Here

        // TODO: fix the commented test so that they succeed on our CI server.
        // Note that the test has been tested and works well on several computers.
        // addTestCase(suite, XWikiJavaScriptComponentsTest.class);

        return new XWikiSeleniumTestSetup(new XWikiTestSetup(suite));
    }
View Full Code Here

        XWikiValidator xwikiValidator = new XWikiValidator();
        addTest(suite, DefaultValidationTest.suite(DefaultValidationTest.class, xwikiValidator),
            DefaultValidationTest.class);
       
        return new XWikiTestSetup(suite);
    }
View Full Code Here

    {
        TestSuite suite = new TestSuite();
        addTestCase(suite, DefaultWebDAVTest.class);
        addTestCase(suite, RootViewTest.class);
        addTestCase(suite, TempFileTest.class);
        return new XWikiTestSetup(suite);
    }
View Full Code Here

        // (there are complex solutions like searching for all tests by parsing the source tree).
        // I think there are TestSuite that do this out there but I haven't looked for them yet.
        addTestCase(suite, PDFTest.class);
        addTestCase(suite, HTMLExportTest.class);

        return new XWikiTestSetup(suite);
    }
View Full Code Here

        // TODO: fix the commented test so that they succeed on our CI server.
        // Note that the test has been tested and works well on several computers.
        // addTestCase(suite, XWikiJavaScriptComponentsTest.class);

        return new XWikiSeleniumTestSetup(new XWikiTestSetup(suite));
    }
View Full Code Here

        // I think there are TestSuite that do this out there but I haven't looked for them yet.
        addTestCase(suite, PDFTest.class);
        addTestCase(suite, HTMLExportTest.class);
        addTestCase(suite, SuggestTest.class);

        return new XWikiTestSetup(suite);
    }
View Full Code Here

        addTestCase(suite, RegularUserTest.class);
        addTestCase(suite, ImportTest.class);
        addTestCase(suite, EmbedTest.class);
        addTestCase(suite, EditInlineTest.class);

        return new XWikiSeleniumTestSetup(new XWikiTestSetup(new WysiwygTestSetup(suite)));
    }
View Full Code Here

    {
        TestSuite suite = new TestSuite();
        addTestCase(suite, DefaultWebDAVTest.class);
        addTestCase(suite, RootViewTest.class);
        addTestCase(suite, TempFileTest.class);
        return new XWikiTestSetup(suite);
    }
View Full Code Here

TOP

Related Classes of org.xwiki.test.integration.XWikiTestSetup

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.