Merge pull request #1572 from dhruba619/master

BAEL-716 TestNG vs JUnit improvement
This commit is contained in:
slavisa-baeldung 2017-04-03 06:29:42 +02:00 committed by GitHub
commit 0f673891a6
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,22 @@
package com.baeldung.junit4vstestng;
import static org.junit.Assert.assertTrue;
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);
}
@Test
public void b_givenInt_whenChangedtoString_thenTrue() {
assertTrue(String.valueOf(10) instanceof String);
}
}

View File

@ -0,0 +1,21 @@
package baeldung.com;
import org.testng.Assert;
import org.testng.annotations.Test;
public class PriorityTest {
private String testString = "10";
private int testInt = 23;
@Test(priority = 1)
public void givenString_whenChangedToInt_thenCorrect() {
Assert.assertTrue(Integer.valueOf(testString) instanceof Integer);
}
@Test(priority = 2)
public void givenInt_whenChangedToString_thenCorrect() {
Assert.assertTrue(String.valueOf(testInt) instanceof String);
}
}