Skip to content
Snippets Groups Projects
Commit e9f8c4ba authored by Adam Knapp's avatar Adam Knapp
Browse files

Error message alignment to tests


Signed-off-by: default avatarAdam Knapp <knappadam5@gmail.com>
parent ad041615
No related branches found
No related tags found
1 merge request!616Fixing issues of previous pull request
......@@ -16,7 +16,7 @@ public interface ISetTypeMessages {
String MISSINGFIELDASN1 = "Mandatory component `{0}'' is missing from SET value";
String VALUELISTNOTATIONERRORTTCN3 = "Value list notation cannot be used for set type `{0}''";
String SETVALUEXPECTEDTTCN3 = "Set value was expected for type `{0}''";
String SETVALUEXPECTEDTTCN3 = "set value was expected for type `{0}''";
String NONEXISTENTFIELDTTCN3 = "Reference to a non-existent field `{0}'' in set value for type `{1}''";
String DUPLICATEFIELDFIRSTTTCN3 = "Field `{0}'' is already given here";
String DUPLICATEFIELDAGAINTTCN3 = "Duplicated set field `{0}''";
......
......@@ -4877,7 +4877,7 @@ public class AST_tests {
markersToCheck.add(new MarkerToCheck("A definition without `runs on' clause cannot call a value of altstep type `@statement_tests.t_altstep', which runs on component type `@statement_tests.mycomponent'", lineNum, IMarker.SEVERITY_ERROR));
lineNum += 11;
markersToCheck.add(new MarkerToCheck("Label statement is not allowed within an interleave statment", lineNum, IMarker.SEVERITY_ERROR));
markersToCheck.add(new MarkerToCheck("Repeat statement cannot be used outside alt statements, altsteps or resonse and exception handling part of call operations", ++lineNum, IMarker.SEVERITY_ERROR));
markersToCheck.add(new MarkerToCheck("Repeat statement cannot be used outside alt statements, altsteps or response and exception handling part of call operations", ++lineNum, IMarker.SEVERITY_ERROR));
markersToCheck.add(new MarkerToCheck("Repeat statement is not allowed within an interleave statement", lineNum, IMarker.SEVERITY_ERROR));
markersToCheck.add(new MarkerToCheck("Continue statement cannot be used outside loops", ++lineNum, IMarker.SEVERITY_ERROR));
markersToCheck.add(new MarkerToCheck("Return statement is not allowed within an interleave statement", ++lineNum, IMarker.SEVERITY_ERROR));
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