Skip to content

Commit

Permalink
[dotnet] Rename assembly prerequisites to AssemblyFixture
Browse files Browse the repository at this point in the history
To avoid confuses that it is not only about Teardown
  • Loading branch information
nvborisenko committed Mar 22, 2024
1 parent 49214cd commit c7fdd50
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
@@ -1,13 +1,13 @@
using NUnit.Framework;
using NUnit.Framework;
using OpenQA.Selenium.Environment;

namespace OpenQA.Selenium
{
[SetUpFixture]
// Outside a namespace to affect the entire assembly
public class AssemblyTeardown
public class AssemblyFixture
{
public AssemblyTeardown()
public AssemblyFixture()
{
}

Expand All @@ -32,4 +32,4 @@ public void RunAfterAnyTests()
}
}
}
}
}
2 changes: 1 addition & 1 deletion dotnet/test/common/BUILD.bazel
Expand Up @@ -4,7 +4,7 @@ filegroup(
name = "assembly-fixtures",
testonly = True,
srcs = [
"AssemblyTeardown.cs",
"AssemblyFixture.cs",
],
visibility = [
"//dotnet/test:__subpackages__",
Expand Down

0 comments on commit c7fdd50

Please sign in to comment.