Examples of XWikiTestSetup


Examples of org.xwiki.test.XWikiTestSetup

    {
        TestSuite suite = new TestSuite();

        addTestCase(suite, StandardDocumentImportTest.class);

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

Examples of org.xwiki.test.XWikiTestSetup

    {
        TestSuite suite = new TestSuite();

        addTestCase(suite, StandardDocumentImportTest.class);

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

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

Examples of org.xwiki.test.integration.XWikiTestSetup

        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

Examples of org.xwiki.test.integration.XWikiTestSetup

        // 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

Examples of org.xwiki.test.integration.XWikiTestSetup

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

Examples of org.xwiki.test.integration.XWikiTestSetup

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

Examples of org.xwiki.test.integration.XWikiTestSetup

        // (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

Examples of org.xwiki.test.integration.XWikiTestSetup

        // 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

Examples of org.xwiki.test.integration.XWikiTestSetup

        // 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
TOP
Copyright © 2018 www.massapi.com. 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.