Browse Source

Removed deprecated code related to testing.

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
pull/767/head
Dimitar Dobrev 9 years ago
parent
commit
eb631e3f37
  1. 4
      src/Generator.Tests/AST/TestAST.cs
  2. 5
      src/Generator.Tests/Passes/TestPasses.cs

4
src/Generator.Tests/AST/TestAST.cs

@ -11,7 +11,7 @@ namespace CppSharp.Generator.Tests.AST @@ -11,7 +11,7 @@ namespace CppSharp.Generator.Tests.AST
[TestFixture]
public class TestAST : ASTTestFixture
{
[TestFixtureSetUp]
[OneTimeSetUp]
public void Init()
{
CppSharp.AST.Type.TypePrinterDelegate = type =>
@ -22,7 +22,7 @@ namespace CppSharp.Generator.Tests.AST @@ -22,7 +22,7 @@ namespace CppSharp.Generator.Tests.AST
ParseLibrary("AST.h", "ASTExtensions.h");
}
[TestFixtureTearDown]
[OneTimeTearDown]
public void CleanUp()
{
ParserOptions.Dispose();

5
src/Generator.Tests/Passes/TestPasses.cs

@ -11,11 +11,6 @@ namespace CppSharp.Generator.Tests.Passes @@ -11,11 +11,6 @@ namespace CppSharp.Generator.Tests.Passes
{
private PassBuilder<TranslationUnitPass> passBuilder;
[TestFixtureSetUp]
public void Init()
{
}
[SetUp]
public void Setup()
{

Loading…
Cancel
Save