Skip to content

Commit c7fdd50

Browse files
committed
[dotnet] Rename assembly prerequisites to AssemblyFixture
To avoid confuses that it is not only about Teardown
1 parent 49214cd commit c7fdd50

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

dotnet/test/common/AssemblyTeardown.cs renamed to dotnet/test/common/AssemblyFixture.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
using NUnit.Framework;
1+
using NUnit.Framework;
22
using OpenQA.Selenium.Environment;
33

44
namespace OpenQA.Selenium
55
{
66
[SetUpFixture]
77
// Outside a namespace to affect the entire assembly
8-
public class AssemblyTeardown
8+
public class AssemblyFixture
99
{
10-
public AssemblyTeardown()
10+
public AssemblyFixture()
1111
{
1212
}
1313

@@ -32,4 +32,4 @@ public void RunAfterAnyTests()
3232
}
3333
}
3434
}
35-
}
35+
}

dotnet/test/common/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ filegroup(
44
name = "assembly-fixtures",
55
testonly = True,
66
srcs = [
7-
"AssemblyTeardown.cs",
7+
"AssemblyFixture.cs",
88
],
99
visibility = [
1010
"//dotnet/test:__subpackages__",

0 commit comments

Comments
 (0)