Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unit Testing XQuery

I've been working with a document repository using XQuery (via Java and .NET interfaces) and was wondering if anyone has any recommendations for unit testing XQuery modules?

like image 222
toddk Avatar asked Feb 04 '09 23:02

toddk


1 Answers

There are several XQuery unit testing frameworks, but most are special-purpose written for a specific XQuery Processor. This is not a complete list, but includes most of the popular ones I'm aware of:

MarkLogic

Roxy Unit Tester https://github.com/marklogic/roxy/wiki/Unit-Testing

XQUT https://github.com/mblakele/xqut

xray https://github.com/robwhitby/xray

eXist

XQSuite http://exist-db.org/exist/apps/doc/xqsuite.xml

BaseX

XQuery Unit Module http://docs.basex.org/wiki/Unit_Module

like image 184
wst Avatar answered Oct 20 '22 17:10

wst