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/TestDatabase.cs')
-rw-r--r--linker/Tests/TestCases/TestDatabase.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/linker/Tests/TestCases/TestDatabase.cs b/linker/Tests/TestCases/TestDatabase.cs
index 2575b8d46..e7dd072c9 100644
--- a/linker/Tests/TestCases/TestDatabase.cs
+++ b/linker/Tests/TestCases/TestDatabase.cs
@@ -54,6 +54,16 @@ namespace Mono.Linker.Tests.TestCases
return NUnitCasesByPrefix("References.");
}
+ public static IEnumerable<TestCaseData> TypeForwardingTests ()
+ {
+ return NUnitCasesByPrefix ("TypeForwarding.");
+ }
+
+ public static IEnumerable<TestCaseData> TestFrameworkTests ()
+ {
+ return NUnitCasesByPrefix ("TestFramework.");
+ }
+
public static IEnumerable<TestCaseData> OtherTests()
{
var allGroupedTestNames = new HashSet<string>(
@@ -67,6 +77,8 @@ namespace Mono.Linker.Tests.TestCases
.Concat(StaticsTests())
.Concat(InteropTests())
.Concat(ReferencesTests ())
+ .Concat(TypeForwardingTests ())
+ .Concat(TestFrameworkTests ())
.Select(c => ((TestCase)c.Arguments[0]).ReconstructedFullTypeName));
return AllCases().Where(c => !allGroupedTestNames.Contains(c.ReconstructedFullTypeName)).Select(c => CreateNUnitTestCase(c, c.DisplayName));