Re: How does (or should) the VS Addin deal with unit tests?
What's the current state of things wrt NMaven and unit testing?
With the latest code (the patches may not all be out here yet) I'm seeing:
1. A prompt to identify which assemblies should be considered Test assemblies.
2. No <testSourceDirectory> in the generated pom
3. maven-test-plugin configuration in the generated pom:
<configuration>
<integrationTest>true</integrationTest>
</configuration>
What does this mean? I'm trying to get _unit_ tests to run (no luck so far.)
Maven already has a separate integration-test phase, so that
configuration is a bit confusing. (Am I running unit tests or
integration tests? In which phase?)
Can we establish some conventions and get unit testing to work by
default, as it does with Maven?
--
Wendy