From 5fda37ebde0fd80d30f34c9129f0a16caead4723 Mon Sep 17 00:00:00 2001
From: Michael Krisper <michael.krisper@tugraz.at>
Date: Mon, 27 Sep 2021 15:53:46 +0200
Subject: [PATCH] removed invalid empty testcase calls

---
 .../VectoCoreTest/Integration/BusAuxiliaries/AuxDemandTest.cs  | 1 -
 .../VectoCoreTest/Integration/BusAuxiliaries/BusAdapterTest.cs | 3 ---
 2 files changed, 4 deletions(-)

diff --git a/VectoCore/VectoCoreTest/Integration/BusAuxiliaries/AuxDemandTest.cs b/VectoCore/VectoCoreTest/Integration/BusAuxiliaries/AuxDemandTest.cs
index 9f8fae4d7e..9fe4448468 100644
--- a/VectoCore/VectoCoreTest/Integration/BusAuxiliaries/AuxDemandTest.cs
+++ b/VectoCore/VectoCoreTest/Integration/BusAuxiliaries/AuxDemandTest.cs
@@ -60,7 +60,6 @@ namespace TUGraz.VectoCore.Tests.Integration.BusAuxiliaries
 			Directory.SetCurrentDirectory(TestContext.CurrentContext.TestDirectory);
 		}
 
-		[TestCase]
 		[TestCase(12000, 1256, 148, 148, 6087.03221)]
 		[TestCase(12000, 1256, -45, -30, 8954.1396)]
 		[TestCase(15700, 1319, -45.79263, -24.0441, 9093.9473)]
diff --git a/VectoCore/VectoCoreTest/Integration/BusAuxiliaries/BusAdapterTest.cs b/VectoCore/VectoCoreTest/Integration/BusAuxiliaries/BusAdapterTest.cs
index 59c137942f..1c24ec3f1c 100644
--- a/VectoCore/VectoCoreTest/Integration/BusAuxiliaries/BusAdapterTest.cs
+++ b/VectoCore/VectoCoreTest/Integration/BusAuxiliaries/BusAdapterTest.cs
@@ -51,7 +51,6 @@ namespace TUGraz.VectoCore.Tests.Integration.BusAuxiliaries
 		}
 
 
-		[TestCase]
 		[TestCase(12000, 1256, 148, 148, 6087.03221)]
 		[TestCase(12000, 1256, -48, -148, 6087.03221)]
 		[TestCase(12000, 1256, 48, -148, 6087.03221)]
@@ -75,7 +74,6 @@ namespace TUGraz.VectoCore.Tests.Integration.BusAuxiliaries
 			Assert.AreEqual(expectedPowerDemand, (torque * engineSpeed).Value(), 1e-2);
 		}
 
-		[TestCase]
 		[TestCase(12000, 1256, 148, 148, 6087.0322)]
 		[TestCase(12000, 1256, -28, -27, 6087.0322)]
 		[TestCase(12000, 1256, -28, -29, 6087.0322)]
@@ -106,7 +104,6 @@ namespace TUGraz.VectoCore.Tests.Integration.BusAuxiliaries
 			Assert.AreEqual(expectedPowerDemand, (torque * engineSpeed).Value(), 1e-2);
 		}
 
-		[TestCase]
 		[TestCase(12000, 1256, -48, -28, 8954.1429)] // smart PS active - power demand below engine drag
 		[TestCase(12000, 1256, 48, -28, 6087.0322)] // no smart aux active - positive power demand
 		[TestCase(12000, 800, -48, -28, 8281.5129)] // smart PS active - power demand below engine drag
-- 
GitLab