2
0

README 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. * XmlReader and DOM standalone test collection
  2. ** XmlTextReader and XmlValidatingReader conformance test
  3. !!!WARNING!!! this test code is outdated. For XmlReader tests, use
  4. Test/System.Xml/W3C/xmlconf.cs instead.
  5. This is a small standalone test system using W3C XML test collection.
  6. http://www.w3.org/XML/Test/
  7. The command name is "xmltest.exe".
  8. "make" will do what you need (downloading test archive, expanding,
  9. compiling test runner).
  10. "make test" will do the actual tests.
  11. ** XmlReader property test
  12. This is a property comparison program that is done during read.
  13. To run the test, type "make xrtest", and it will print the
  14. difference between ms and mono.
  15. ** XmlDocument node properties test
  16. This is a DOM property comparison program.
  17. To run the test, type "make domtest", and it will print the
  18. difference between ms and mono.
  19. ** XmlDocument insertion event test
  20. This is a set of event order tests for several XML document.
  21. To run the test, type "make eventtest", and it will print the
  22. difference between ms and mono.
  23. For removal and changing, it should be done in unit test (I have
  24. no idea for examining them in batch tests).
  25. Atsushi Eno <[email protected]>