Skip to content
Snippets Groups Projects
run-tests.xql 591 B
Newer Older
  • Learn to ignore specific revisions
  • Peter Stadler's avatar
    Peter Stadler committed
    xquery version "3.1";
     
    (: the following line must be added to each of the modules that include unit tests :)
    import module namespace test="http://exist-db.org/xquery/xqsuite" at "resource:org/exist/xquery/lib/xqsuite/xqsuite.xql";
     
    import module namespace wust="http://xquery.weber-gesamtausgabe.de/modules/wega-util-shared-tests" at "wega-util-shared-tests.xqm";
     
    (: the test:suite() function will run all the test-annotated functions in the module whose namespace URI you provide :)
    test:suite(util:list-functions("http://xquery.weber-gesamtausgabe.de/modules/wega-util-shared-tests"))