Skip to content

Commit ab56392

Browse files
authored
Deduplicate runtime tests using the class name 'Test' (#61125)
1 parent c23bc3b commit ab56392

995 files changed

Lines changed: 11011 additions & 11011 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/tests/CoreMangLib/system/delegate/generics/negativegenerics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public override void GMeth<U>(){}
1818
delegate void Open(B<int> b);
1919
delegate void GClosed<T>();
2020

21-
class Test{
21+
class Test_negativegenerics{
2222
public static int retVal=100;
2323

2424
public static int Main(){

src/tests/CoreMangLib/system/delegate/generics/ng_standard.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
using System;
44

5-
class Test{
5+
class Test_ng_standard{
66
public static int Main(){
77
Console.WriteLine("Test creation/invocation of non-generic closed instance or open static delegates over various generic methods");
88

src/tests/GC/API/GC/Collect.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using System;
66

7-
public class Test {
7+
public class Test_Collect {
88
public static int Main() {
99

1010
Object obj1 = new Object();

src/tests/GC/API/GC/Collect0.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using System;
66

7-
public class Test {
7+
public class Test_Collect0 {
88
public static int Main() {
99

1010
int[] array = new int[25];

src/tests/GC/API/GC/Collect1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
using System;
77

8-
public class Test
8+
public class Test_Collect1
99
{
1010
public static int Main()
1111
{

src/tests/GC/API/GC/Collect_fail.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
using System;
1515

16-
public class Test
16+
public class Test_Collect_fail
1717
{
1818
public static int Main()
1919
{

src/tests/GC/API/GC/Finalize.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
using System;
77
using System.Runtime.CompilerServices;
88

9-
public class Test
9+
public class Test_Finalize
1010
{
1111
public static bool visited = false;
1212
public class Dummy
1313
{
1414
~Dummy()
1515
{
1616
Console.WriteLine("In Finalize() of Dummy");
17-
Test.visited = true;
17+
Test_Finalize.visited = true;
1818
}
1919
}
2020

src/tests/GC/API/GC/GetAllocatedBytesForCurrentThread.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Collections.Generic;
88
using System.Reflection;
99

10-
public class Test
10+
public class Test_GetAllocatedBytesForCurrentThread
1111
{
1212
static Random Rand = new Random();
1313

src/tests/GC/API/GC/GetGCMemoryInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Collections.Generic;
77
using System.Threading;
88

9-
public class Test
9+
public class Test_GetGCMemoryInfo
1010
{
1111
// Set this to false normally so the test doesn't have so much console output.
1212
static bool fPrintInfo = false;

src/tests/GC/API/GC/GetGeneration_box.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public struct StructType {
1212
public enum EnumType {
1313
}
1414

15-
public class Test {
15+
public class Test_GetGeneration_box {
1616

1717
public static int Main() {
1818
// literals

0 commit comments

Comments
 (0)