From 30bd6551885a16de9f033b82c67c8c499f6bfb95 Mon Sep 17 00:00:00 2001
From: Markus Quaritsch <markus.quaritsch@tugraz.at>
Date: Thu, 23 Jun 2022 16:58:45 +0200
Subject: [PATCH] correcting PTO loss data in testcase after changing
 declaration values

---
 .../Models/Declaration/DeclarationDataTest.cs   | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/VectoCore/VectoCoreTest/Models/Declaration/DeclarationDataTest.cs b/VectoCore/VectoCoreTest/Models/Declaration/DeclarationDataTest.cs
index b9a879cade..9693e144ff 100644
--- a/VectoCore/VectoCoreTest/Models/Declaration/DeclarationDataTest.cs
+++ b/VectoCore/VectoCoreTest/Models/Declaration/DeclarationDataTest.cs
@@ -334,14 +334,15 @@ namespace TUGraz.VectoCore.Tests.Models.Declaration
         }
 
         [TestCase("only the drive shaft of the PTO - shift claw, synchronizer, sliding gearwheel", 50),
-        TestCase("only the drive shaft of the PTO - multi-disc clutch", 1000),
-        TestCase("only the drive shaft of the PTO - multi-disc clutch, oil pump", 2000),
-        TestCase("drive shaft and/or up to 2 gear wheels - shift claw, synchronizer, sliding gearwheel", 300),
-        TestCase("drive shaft and/or up to 2 gear wheels - multi-disc clutch", 1500),
-        TestCase("drive shaft and/or up to 2 gear wheels - multi-disc clutch, oil pump", 3000),
-        TestCase("drive shaft and/or more than 2 gear wheels - shift claw, synchronizer, sliding gearwheel", 600),
-        TestCase("drive shaft and/or more than 2 gear wheels - multi-disc clutch", 2000),
-        TestCase("drive shaft and/or more than 2 gear wheels - multi-disc clutch, oil pump", 4000),
+        TestCase("only the drive shaft of the PTO - multi-disc clutch", 350),
+        TestCase("only the drive shaft of the PTO - multi-disc clutch, oil pump", 3000),
+        TestCase("drive shaft and/or up to 2 gear wheels - shift claw, synchronizer, sliding gearwheel", 150),
+        TestCase("drive shaft and/or up to 2 gear wheels - multi-disc clutch", 400),
+        TestCase("drive shaft and/or up to 2 gear wheels - multi-disc clutch, oil pump", 3050),
+        TestCase("drive shaft and/or more than 2 gear wheels - shift claw, synchronizer, sliding gearwheel", 200),
+        TestCase("drive shaft and/or more than 2 gear wheels - multi-disc clutch", 450),
+        TestCase("drive shaft and/or more than 2 gear wheels - multi-disc clutch, oil pump", 3100),
+        TestCase("PTO which includes 1 or more additional gearmesh(es), without disconnect clutch", 1500),
         TestCase("only one engaged gearwheel above oil level", 0)]
         public void AuxPTOTransmissionTest(string technology, double value)
         {
-- 
GitLab