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

View File

@ -6,20 +6,17 @@ import org.junit.FixMethodOrder;
import org.junit.Test;
import org.junit.runners.MethodSorters;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class SortedTests {
@Test
public void a_givenString_whenChangedtoInt_thenTrue(){
assertTrue(
Integer.valueOf("10") instanceof Integer);
public void a_givenString_whenChangedtoInt_thenTrue() {
assertTrue(Integer.valueOf("10") instanceof Integer);
}
@Test
public void b_givenInt_whenChangedtoString_thenTrue(){
assertTrue(
String.valueOf(10) instanceof String);
public void b_givenInt_whenChangedtoString_thenTrue() {
assertTrue(String.valueOf(10) instanceof String);
}
}

View File

@ -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);
}
}