diff --git a/VectoCore/VectoCoreTest/Integration/TestVehicleIdlingSpeed.cs b/VectoCore/VectoCoreTest/Integration/TestVehicleIdlingSpeed.cs index f1191b9578a4c9904b762065ecc3c0a119a47f59..9064af1ace2c46e4b6fa88ade1c48fb1bad020f3 100644 --- a/VectoCore/VectoCoreTest/Integration/TestVehicleIdlingSpeed.cs +++ b/VectoCore/VectoCoreTest/Integration/TestVehicleIdlingSpeed.cs @@ -50,7 +50,7 @@ namespace TUGraz.VectoCore.Tests.Integration { const string SampleVehicleDecl = "TestData/XML/XMLReaderDeclaration/vecto_vehicle-sample.xml"; - [TestMethod] + [TestMethod, TestCategory("LongRunning")] public void VehicleIdlingSpeedTest() { var VehicleEngineIdleSpeed = 900.RPMtoRad(); diff --git a/VectoCore/VectoCoreTest/Integration/TorqueLimitsTest.cs b/VectoCore/VectoCoreTest/Integration/TorqueLimitsTest.cs index f4aa1ca18eb96050c0562e090e015b04038eca47..aecfa7608a6044125e6175eb31d1ee6d0538bd05 100644 --- a/VectoCore/VectoCoreTest/Integration/TorqueLimitsTest.cs +++ b/VectoCore/VectoCoreTest/Integration/TorqueLimitsTest.cs @@ -171,10 +171,10 @@ namespace TUGraz.VectoCore.Tests.Integration Assert.AreEqual(-115, engineData.FullLoadCurves[6].MaxDragTorque.Value()); } - [TestCase(GearboxLimitJobDecl_800), - TestCase(GearboxLimitJobDecl_865), - TestCase(VehicleLimitJobDecl_850), - TestCase(VehicleLimitJobDecl_910)] + [TestCase(GearboxLimitJobDecl_800, "LongRunning"), + TestCase(GearboxLimitJobDecl_865, "LongRunning"), + TestCase(VehicleLimitJobDecl_850, "LongRunning"), + TestCase(VehicleLimitJobDecl_910, "LongRunning")] public void TestRunTorqueLimitedSimulations(string file) { var fileWriter = new FileOutputWriter(file); @@ -215,7 +215,7 @@ namespace TUGraz.VectoCore.Tests.Integration Assert.IsTrue(jobContainer.Runs.All(r => r.Success), string.Concat(jobContainer.Runs.Select(r => r.ExecException))); } - [TestCase(EngineSpeedLimitJobDecl)] + [TestCase(EngineSpeedLimitJobDecl, "LongRunning")] public void TestRunEngineSpeedLimitedSimulations(string file) { var fileWriter = new FileOutputWriter(file);