I have inherited a Java project and am new to Java development. I feel a good way for me to get comfortable with the code is to write some tests around it. I\'m writing my c
I had it when using data provider and one of the parameters had a new line character, like this:
@DataProvider public static Object[][] invalidAdjustment() { return new Object[][]{ {"some \n text", false}, }; }
Removing the \n solved the issue
\n