2020-02-24 08:43:57 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#Tests
|
|
|
|
mkdir -p TestFiles
|
2020-02-29 19:14:35 +00:00
|
|
|
cd RecrownedGTK.Tests
|
2020-02-29 19:19:21 +00:00
|
|
|
../TestFiles/NUnit.Runners/NUnit.ConsoleRunner.3.11.1/tools/nunit3-console.exe "RecrownedGTK.Tests.csproj" --result=nunit3 --work="TestFiles"
|
2020-02-29 19:14:35 +00:00
|
|
|
cd ..
|
2020-02-29 19:19:21 +00:00
|
|
|
mv TestFiles/nunit3 TestFiles/RecrownedGTK.Tests.xml
|
2020-02-29 19:14:35 +00:00
|
|
|
|
|
|
|
cd RecrownedGTK.Tools.Tests
|
2020-02-29 19:19:21 +00:00
|
|
|
../TestFiles/NUnit.Runners/NUnit.ConsoleRunner.3.11.1/tools/nunit3-console.exe "RecrownedGTK.Tools.Tests.csproj" --result=nunit3 --work="TestFiles"
|
2020-02-29 19:14:35 +00:00
|
|
|
cd ..
|
2020-02-29 19:19:21 +00:00
|
|
|
mv TestFiles/nunit3 TestFiles/RecrownedGTK.Tools.Tests.xml
|