I'm working on a variation of this stack overflow answer that provides reliable cleanup of tests. How do you write unit tests for NUnit addins?
Examining how NUnit self tests, I have determined:
- You can write tests, that pass, that verify correct behavior of NUnit for failing tests.
- You write unit tests against test fixtures in a separate assembly (otherwise the fixtures under test will execute with your unit tests)
- Use NUnit.TestUtilities.TestBuilder to create fixtures and call TestSuite.Run method.
What I don't see are any tests of the add-in process. I've got errors occurring sometime between install and execution. How would I unit test implementations the following?
- IAddin.Install
- ITestDecorator.Decorate