BAEL-716 Junit vs testng improvement updated formatting

This commit is contained in:
dhruba619
2017-04-02 21:20:31 +05:30
parent d85f1640d7
commit c817aec2dc
2 changed files with 8 additions and 13 deletions
@@ -10,14 +10,12 @@ public class PriorityTest {
@Test(priority = 1)
public void givenString_whenChangedToInt_thenCorrect() {
Assert.assertTrue(
Integer.valueOf(testString) instanceof Integer);
Assert.assertTrue(Integer.valueOf(testString) instanceof Integer);
}
@Test(priority = 2)
public void givenInt_whenChangedToString_thenCorrect() {
Assert.assertTrue(
String.valueOf(testInt) instanceof String);
Assert.assertTrue(String.valueOf(testInt) instanceof String);
}
}