Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions src/SolidGui.Tests/Engine/SolidReport_Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace SolidGui.Tests.Engine
public class SolidReportTest
{

[TestFixtureSetUp]
[SetUp]
public void Init()
{
}
Expand Down Expand Up @@ -48,7 +48,7 @@ public void SolidReport_AddEntry_Correct()
*/

[Test]
[Ignore] // TODO !!! Streaming isn't working yet. But currently we don't need to save it anyway.
[Ignore("TODO !!! Streaming isn't working yet. But currently we don't need to save it anyway.")]
public void SolidReport_SaveOpen_Correct()
{
var save = new SolidReport();
Expand Down
2 changes: 1 addition & 1 deletion src/SolidGui.Tests/Engine/sfmreader_read_test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace SolidGui.Tests.Engine
public class SfmReader_Read_Test
{

[TestFixtureSetUp]
[SetUp]
public void Init()
{
}
Expand Down
2 changes: 1 addition & 1 deletion src/SolidGui.Tests/Export/ExportFactory_Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class ExportFactory_Test
{
ExportFactory _f;

[TestFixtureSetUp]
[SetUp]
public void Init()
{
_f = ExportFactory.Singleton();
Expand Down
83 changes: 0 additions & 83 deletions src/SolidGui.Tests/Export/ExportFileTestConstraint.cs

This file was deleted.

4 changes: 2 additions & 2 deletions src/SolidGui.Tests/Export/ExportLiftTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ namespace SolidGui.Tests.Export
[TestFixture]
public class ExportLiftTests
{
[TestFixtureSetUp]
[SetUp]
public void TestFixtureSetUp()
{
Sldr.Initialize();
}

[TestFixtureTearDown]
[TearDown]
public void TestFixtureTearDown()
{
Sldr.Cleanup();
Expand Down
4 changes: 2 additions & 2 deletions src/SolidGui.Tests/Export/ExportLift_RelationsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ namespace SolidGui.Tests.Export
[TestFixture]
public class ExportLift_RelationTests
{
[TestFixtureSetUp]
[SetUp]
public void TestFixtureSetUp()
{
Sldr.Initialize();
}

[TestFixtureTearDown]
[TearDown]
public void TestFixtureTearDown()
{
Sldr.Cleanup();
Expand Down
64 changes: 0 additions & 64 deletions src/SolidGui.Tests/MappingPMTests.cs

This file was deleted.

3 changes: 2 additions & 1 deletion src/SolidGui.Tests/MarkerRulesPMTest.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using System.Collections.Generic;
using System.IO;
using System.Xml;
using SolidConsole;
using SolidGui.Engine;
using NUnit.Framework;
using SIL.TestUtilities;

namespace SolidGui.Tests
{
Expand Down
Loading