Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

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

change testcase: expected columns are not necessary next to each other, use separate checks.

parent b9ce1c3f
No related branches found
No related tags found
No related merge requests found
......@@ -455,7 +455,8 @@ public class LorrySimulation
SearchForPattern(sumData, new List<string>(fcFields.Select(fc => string.Format(fc, "")).Concat(CO2fields)));
}
SearchForPattern(sumData, new List<string>(EC_el.Concat(REESS_fields)));
SearchForPattern(sumData, EC_el);
SearchForPattern(sumData, REESS_fields);
SearchForPattern(sumData, GbxTimeShareFields());
}
......@@ -470,7 +471,9 @@ public class LorrySimulation
SearchForPattern(sumData, new List<string>(fcFields.Select(fc => string.Format(fc, "")).Concat(CO2fields)));
}
SearchForPattern(sumData, new List<string>(EC_el.Concat(p_hev_fields).Concat(REESS_fields)));
SearchForPattern(sumData, EC_el);
SearchForPattern(sumData, p_hev_fields);
SearchForPattern(sumData, REESS_fields);
SearchForPattern(sumData,GbxTimeShareFields());
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment