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

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

test case sensitivity of datatable columns

parent 571466ef
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ namespace TUGraz.VectoCore.InputData.Reader.ComponentData
throw new VectoException("PTO Idle LossMap must contain at least 2 entries.");
}
if (!data.Columns.Contains(Fields.EngineSpeed) || !data.Columns.Contains(Fields.PTOTorque)) {
if (!(data.Columns.Contains(Fields.EngineSpeed) && data.Columns.Contains(Fields.PTOTorque))) {
data.Columns[0].ColumnName = Fields.EngineSpeed;
data.Columns[1].ColumnName = Fields.PTOTorque;
LoggingObject.Logger<RetarderLossMap>().Warn(
......
......@@ -33,14 +33,32 @@ using System;
using System.Collections.Generic;
using NUnit.Framework;
using TUGraz.VectoCommon.Utils;
using TUGraz.VectoCore.InputData.Reader.ComponentData;
using TUGraz.VectoCore.Models.SimulationComponent.Data;
using TUGraz.VectoCore.Tests.Utils;
using TUGraz.VectoCore.Utils;
namespace TUGraz.VectoCore.Tests.Models.Simulation
{
[TestFixture]
public class PTOIdleLossTest
{
[TestCase]
public void PTOLossMapCaseSensitiveTest()
{
var data = new[] {
"0, 0",
"10, 100"
};
var tbl = VectoCSVFile.ReadStream(InputDataHelper.InputDataAsStream("pto torque, engine speed", data));
var pto = PTOIdleLossMapReader.Create(tbl);
var loss = pto.GetTorqueLoss(100.RPMtoRad());
Assert.AreEqual(10, loss.Value());
}
[TestCase]
public void PTOIdleLosses_FixPoints()
{
......
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