Add initial test.runsettings file

This commit introduces a test.runsettings file to configure the test environment. It specifies the results directory for test outputs, setting it to the system's temporary folder. This aids in standardizing and managing test outputs centrally.

Signed-off-by: Ivandro Jao <Ivandrofly@gmail.com>
This commit is contained in:
Ivandro Jao 2024-09-25 14:46:58 +01:00
parent 95e4c2450b
commit d3057363de
2 changed files with 7 additions and 0 deletions

View File

@ -25,6 +25,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
LanguageBaseEnglish.xml = LanguageBaseEnglish.xml
LICENSE.txt = LICENSE.txt
README.md = README.md
test.runsettings = test.runsettings
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibSE", "src\libse\LibSE.csproj", "{D6F64CD3-C3EA-4B36-B575-9B3B8A3CA13F}"

6
test.runsettings Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<RunConfiguration>
<ResultsDirectory>%temp%\TestResults</ResultsDirectory>
</RunConfiguration>
</RunSettings>