diff --git a/VectoCore/VectoCoreTest/FileIO/JsonTest.cs b/VectoCore/VectoCoreTest/FileIO/JsonTest.cs index e2db15d94a580a67758bed1824e69380bfa98c80..2947d9f5f6b0950dc04b65e206a0e4064930c287 100644 --- a/VectoCore/VectoCoreTest/FileIO/JsonTest.cs +++ b/VectoCore/VectoCoreTest/FileIO/JsonTest.cs @@ -43,13 +43,20 @@ using TUGraz.VectoCore.Tests.Utils; namespace TUGraz.VectoCore.Tests.FileIO { - [TestFixture] + + [TestFixture] public class JsonTest { private const string TestJobFile = @"Testdata\Jobs\40t_Long_Haul_Truck.vecto"; private const string TestVehicleFile = @"Testdata\Components\24t Coach.vveh"; - [TestCase] + [OneTimeSetUp] + public void RunBeforeAnyTests() + { + Directory.SetCurrentDirectory(TestContext.CurrentContext.TestDirectory); + } + + [TestCase] public void ReadJobTest() { var job = JSONInputDataFactory.ReadJsonJob(TestJobFile); diff --git a/VectoCore/VectoCoreTest/FileIO/SimulationDataReaderTest.cs b/VectoCore/VectoCoreTest/FileIO/SimulationDataReaderTest.cs index 45e3f7f00efab74b5f146d206a28584d1ef83a84..e54a3059fe81c055f7241b8089e5506891b52396 100644 --- a/VectoCore/VectoCoreTest/FileIO/SimulationDataReaderTest.cs +++ b/VectoCore/VectoCoreTest/FileIO/SimulationDataReaderTest.cs @@ -48,9 +48,15 @@ namespace TUGraz.VectoCore.Tests.FileIO public class SimulationDataReaderTest { protected const string DeclarationJob = @"TestData\Jobs\12t Delivery Truck.vecto"; - protected const double Tolerance = 0.0001; - - [TestCase] + protected const double Tolerance = 0.0001; + + [OneTimeSetUp] + public void RunBeforeAnyTests() + { + Directory.SetCurrentDirectory(TestContext.CurrentContext.TestDirectory); + } + + [TestCase] public void ReadDeclarationJobFile() { var dataProvider = JSONInputDataFactory.ReadJsonJob(DeclarationJob); diff --git a/VectoCore/VectoCoreTest/Integration/SimulationRuns/MinimalPowertrain.cs b/VectoCore/VectoCoreTest/Integration/SimulationRuns/MinimalPowertrain.cs index 0ac48c53d4308bb3d3188ae33ec7aeddfc6b830e..69924926e5201427486d41817bc880e6df253bff 100644 --- a/VectoCore/VectoCoreTest/Integration/SimulationRuns/MinimalPowertrain.cs +++ b/VectoCore/VectoCoreTest/Integration/SimulationRuns/MinimalPowertrain.cs @@ -48,6 +48,7 @@ using TUGraz.VectoCore.Tests.Utils; using TUGraz.VectoCore.Utils; using Wheels = TUGraz.VectoCore.Models.SimulationComponent.Impl.Wheels; using NUnit.Framework; +using System.IO; namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns { @@ -63,7 +64,13 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns public const string AccelerationFile2 = @"TestData\Components\Truck.vacc"; public const double Tolerance = 0.001; - [TestCase] + [OneTimeSetUp] + public void RunBeforeAnyTests() + { + Directory.SetCurrentDirectory(TestContext.CurrentContext.TestDirectory); + } + + [TestCase] public void TestWheelsAndEngineInitialize() { var engineData = MockSimulationDataFactory.CreateEngineDataFromFile(EngineFile, 1); @@ -173,7 +180,7 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns Default(r => Assert.Fail("Unexpected Response: {0}", r)); } - Assert.IsInstanceOf<ResponseSuccess>(response); + Assert.IsInstanceOf<ResponseCycleFinished>(response); modData.Finish(VectoRun.Status.Success); diff --git a/VectoCore/VectoCoreTest/Models/SimulationComponentData/FullLoadCurveTest.cs b/VectoCore/VectoCoreTest/Models/SimulationComponentData/FullLoadCurveTest.cs index 93e8198f73abe07bafb007e55c78521be8d19cb4..7733a6eb9f31cad3100a3cf51f4fdfb7c036e9eb 100644 --- a/VectoCore/VectoCoreTest/Models/SimulationComponentData/FullLoadCurveTest.cs +++ b/VectoCore/VectoCoreTest/Models/SimulationComponentData/FullLoadCurveTest.cs @@ -44,6 +44,7 @@ using TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox; using TUGraz.VectoCore.Tests.Utils; using TUGraz.VectoCore.Utils; using NUnit.Framework; +using System.IO; namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData { @@ -55,7 +56,13 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData public static List<string> LogList = new List<string>(); - [TestCase] + [OneTimeSetUp] + public void RunBeforeAnyTests() + { + Directory.SetCurrentDirectory(TestContext.CurrentContext.TestDirectory); + } + + [TestCase] public void TestFullLoadStaticTorque() { var fldCurve = FullLoadCurveReader.ReadFromFile(CoachEngineFLD);