DOM guide: domTest

From COLLADA Public Wiki
Jump to navigation Jump to search

domTest is a standalone program that serves as the COLLADA DOM's automated test suite. It exercises a good chunk of the DOM library. In addition to API testing, it also functions as an example of how to configure the build settings for a client application that uses the DOM.

Building domTest

When building with make, the default is to also build domTest, so there's nothing extra to do. When building with the Visual Studio projects, simply select and build the domTest project.

Running domTest

domTest is run on the command line.

To get a listing of the available options:

 domTest 

To run all the automated tests:

domTest -all 

To get a listing of the individual test names of all the automated tests:

domTest -printTests

To run specified tests:

domTest test1 test2 ...