Can NUnit be integrated with VB.net Express Edition? What's the best way?

I'm a Java developer who is studying VB.net for a small project. When coding in Java, we don't have to think a lot about how to integrate our IDE with our unit test framework, because most of the IDE's integrated areas are already integrated.

But now that I am working on a project whose main requirement is to use VB.net Express Edition, can this IDE be integrated with NUnit? How can i do this? Is there a better practice for this task? What should I do?

No, we cannot use Visual Studio, only Express Edition VB.net

+2


a source to share


1 answer


You can add a test project, link to DLL nunit.framework. If you can install the launcher in express (via project properties), you can install the launcher for the test project in the NUnit framework GUI. I was not sure if express supported this ...

Alternatively, you can run standalone NUnit; open NUnit, point to the test project DLL, and update NUnit on recompilation.



NTN.

+2


a source







All Articles