Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Rename TestsSuite and add comment, remove unneeded using
  • Loading branch information
filmor committed Nov 14, 2018
commit d7f2bc849c311d7a9d17975bc583bbf2f6654bc9
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@

namespace Python.EmbeddingTest
{

// As the SetUpFixture, the OneTimeTearDown of this class is executed after
// all tests have run.
[SetUpFixture]
public class TestsSuite
public class GlobalTestsSetup
{
[OneTimeTearDown]
public void FinalCleanup()
Expand Down
2 changes: 1 addition & 1 deletion src/embed_tests/Python.EmbeddingTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
<Compile Include="TestRuntime.cs" />
<Compile Include="TestPyScope.cs" />
<Compile Include="TestTypeManager.cs" />
<Compile Include="TestsSuite.cs" />
<Compile Include="GlobalTestsSetup.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\runtime\Python.Runtime.csproj">
Expand Down
1 change: 0 additions & 1 deletion src/embed_tests/TestPythonEngineProperties.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Diagnostics;
using NUnit.Framework;
using Python.Runtime;

Expand Down