Skip to content

Commit d7f2bc8

Browse files
committed
Rename TestsSuite and add comment, remove unneeded using
1 parent b2b4838 commit d7f2bc8

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/embed_tests/TestsSuite.cs renamed to src/embed_tests/GlobalTestsSetup.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33

44
namespace Python.EmbeddingTest
55
{
6+
7+
// As the SetUpFixture, the OneTimeTearDown of this class is executed after
8+
// all tests have run.
69
[SetUpFixture]
7-
public class TestsSuite
10+
public class GlobalTestsSetup
811
{
912
[OneTimeTearDown]
1013
public void FinalCleanup()

src/embed_tests/Python.EmbeddingTest.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<Compile Include="TestRuntime.cs" />
106106
<Compile Include="TestPyScope.cs" />
107107
<Compile Include="TestTypeManager.cs" />
108-
<Compile Include="TestsSuite.cs" />
108+
<Compile Include="GlobalTestsSetup.cs" />
109109
</ItemGroup>
110110
<ItemGroup>
111111
<ProjectReference Include="..\runtime\Python.Runtime.csproj">

src/embed_tests/TestPythonEngineProperties.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.Diagnostics;
32
using NUnit.Framework;
43
using Python.Runtime;
54

0 commit comments

Comments
 (0)