Googled for a Xml Dom open source library that ships with unit tests, but could not find any. Are there any dom libraries, java or .net that have unit tests?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Apache Xerces certainly includes a bunch of tests; look in the SVN repository. I expect that other libraries do as well. (I cannot imagine how you could develop an XML DOM implementation without some kind of unit / regression test suite.) Perhaps you are looking in the wrong place for unit tests, or your criteria for what constitutes a "unit test" is too restrictive. |
|||||||
|
|
I'm not entirely sure whether by "DOM" you mean "pure W3C DOM" or DOM-like libraries in general, but XOM has very complete unit test coverage, based on JUnit. |
|||
|
|