Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 9381882

Browse files
Adding test.sh
1 parent f49f812 commit 9381882

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

test.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/sh -eu
2+
Configuration="Debug"
3+
if [ $# -gt 0 ]; then
4+
Configuration=$1
5+
fi
6+
7+
Exclude=""
8+
if [ $# -gt 1 ]; then
9+
Exclude="/exclude=$2"
10+
fi
11+
12+
NunitDirectory="packages\NUnit.Runners.2.6.4\tools"
13+
ConsoleRunner="$NunitDirectory\nunit-console.exe"
14+
15+
$ConsoleRunner "build\IntegrationTests\IntegrationTests.dll" "build\IntegrationTests\TestUtils.dll" "build\TaskSystemIntegrationTests\TaskSystemIntegrationTests.dll" "build\UnitTests\TestUtils.dll" "build\UnitTests\UnitTests.dll" "src\tests\TestUtils\bin\\$Configuration\TestUtils.dll" $Exclude

0 commit comments

Comments
 (0)