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

Skip to content
Snippets Groups Projects
Commit e1c52dc0 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

fix testcase : duplicate entries in FLD are not allowed

parent b2efe257
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
fullLoad.Columns.Add("drag torque");
fullLoad.Columns.Add("PT1");
fullLoad.Rows.Add("3", "3", "-3", "3");
fullLoad.Rows.Add("3", "3", "-3", "3");
fullLoad.Rows.Add("4", "3", "-3", "3");
var data = new CombustionEngineData {
ModelName = "asdf",
......@@ -116,7 +116,7 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
fullLoad.Columns.Add("drag torque");
fullLoad.Columns.Add("PT1");
fullLoad.Rows.Add("3", "3", "-3", "3");
fullLoad.Rows.Add("3", "3", "-3", "3");
fullLoad.Rows.Add("4", "3", "-3", "3");
var data = new MockEngineDataProvider {
Model = "asdf",
Displacement = 6374.SI(Unit.SI.Cubic.Centi.Meter).Cast<CubicMeter>(),
......@@ -151,7 +151,7 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
fullLoad.Columns.Add("drag torque");
fullLoad.Columns.Add("PT1");
fullLoad.Rows.Add("3", "3", "-3", "3");
fullLoad.Rows.Add("3", "3", "-3", "3");
fullLoad.Rows.Add("4", "3", "-3", "3");
var data = new MockEngineDataProvider {
Model = "asdf",
Displacement = 6374.SI(Unit.SI.Cubic.Centi.Meter).Cast<CubicMeter>(),
......
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