Merge pull request #10326 from pjdelport/add-nunit-binpath-config

Add NUnit configuration with correct binpath
This commit is contained in:
Oliver Brakmann
2015-12-29 21:42:43 +01:00
2 changed files with 7 additions and 1 deletions

View File

@@ -243,7 +243,7 @@ nunit: test_dll
echo 'NUnit version >= 2.6 required'>&2; \
exit 1; \
fi
@$(NUNIT_CONSOLE) --noresult $(test_dll_TARGET)
@$(NUNIT_CONSOLE) --noresult OpenRA.Test.nunit
test: utility mods
@echo

6
OpenRA.Test.nunit Normal file
View File

@@ -0,0 +1,6 @@
<NUnitProject>
<Settings activeconfig="Debug"/>
<Config name="Debug" binpath="mods/common">
<assembly path="OpenRA.Test.dll"/>
</Config>
</NUnitProject>