I recently found a useful post: NUnit Extension
However, my question still did not answer.
First, what is a test assembly ?
Secondly, can someone give me a more detailed explanation of " NUnit is looking for every test build to add add-ons "?
For example, I have two projects in my solution VS2010, say, project A and project B. A is a test project (contains "[Test]" inside), B is a project for adding NUnit (contains addin installer, EventListener interface implementations, etc. e. inside), and links A B. Does it work? Will the addin be called?
If not, I assume that this means that I should have various .cs files (which implement the addition of NUnit) that are directly included in project A, instead of putting them in a separate project and referencing it in a test project. Is that what you mean?
If so, another problem arose: when I have a project C, D, E ... which are also test projects, I have to include these different .cs files (which implement the NUnit add-on) in each test project
source
share