Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/Mono.Linker.Tests/TestCasesRunner/LinkedTestCaseResult.cs')
-rw-r--r--test/Mono.Linker.Tests/TestCasesRunner/LinkedTestCaseResult.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/Mono.Linker.Tests/TestCasesRunner/LinkedTestCaseResult.cs b/test/Mono.Linker.Tests/TestCasesRunner/LinkedTestCaseResult.cs
new file mode 100644
index 000000000..2d05f6d09
--- /dev/null
+++ b/test/Mono.Linker.Tests/TestCasesRunner/LinkedTestCaseResult.cs
@@ -0,0 +1,19 @@
+using Mono.Linker.Tests.Extensions;
+using Mono.Linker.Tests.TestCases;
+
+namespace Mono.Linker.Tests.TestCasesRunner {
+ public class LinkedTestCaseResult {
+ public readonly TestCase TestCase;
+ public readonly NPath InputAssemblyPath;
+ public readonly NPath OutputAssemblyPath;
+ public readonly NPath ExpectationsAssemblyPath;
+
+ public LinkedTestCaseResult (TestCase testCase, NPath inputAssemblyPath, NPath outputAssemblyPath, NPath expectationsAssemblyPath)
+ {
+ TestCase = testCase;
+ InputAssemblyPath = inputAssemblyPath;
+ OutputAssemblyPath = outputAssemblyPath;
+ ExpectationsAssemblyPath = expectationsAssemblyPath;
+ }
+ }
+} \ No newline at end of file