Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 6fff57a1 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

Added LongRunning Category to some tests

parent 27ed09e2
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment