Here is my current code:
Code: Select all
if (LangToAdd.Equals(""))
{
Ranorex.Report.Info("Step Skipped For Iteration", "No Additional Languages specified");
throw new Ranorex.RanorexException("No Additional Languages specified");
}
else
What line of C# code can I use instead of:
throw new Ranorex.RanorexException("No Additional Languages specified");
that will just quit the current test case and move on to the next one?
Playing with error behavior is not working for me.
Thank you