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 'linker/Tests/TestCases/TestSuites.cs')
-rw-r--r--linker/Tests/TestCases/TestSuites.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/linker/Tests/TestCases/TestSuites.cs b/linker/Tests/TestCases/TestSuites.cs
index ca5a0eb7e..e5be82d62 100644
--- a/linker/Tests/TestCases/TestSuites.cs
+++ b/linker/Tests/TestCases/TestSuites.cs
@@ -60,6 +60,18 @@ namespace Mono.Linker.Tests.TestCases
Run(testCase);
}
+ [TestCaseSource (typeof (TestDatabase), nameof (TestDatabase.TypeForwardingTests))]
+ public void TypeForwardingTests (TestCase testCase)
+ {
+ Run (testCase);
+ }
+
+ [TestCaseSource(typeof (TestDatabase), nameof (TestDatabase.TestFrameworkTests))]
+ public void TestFrameworkTests (TestCase testCase)
+ {
+ Run (testCase);
+ }
+
[TestCaseSource (typeof (TestDatabase), nameof (TestDatabase.OtherTests))]
public void OtherTests (TestCase testCase)
{