Reputation: 81
I have written a Python script for parsing and validating XML
files against an .XSD
schema (and some other constraints), and I am about to write tests for it. I was thinking of using Python's unittest
because it is built in and has assertions that I am familiar with. I have never tested with Python before, but have done JUnit testing with Java. I was wondering if I should create a new .py script for the tests?
Upvotes: 0
Views: 98