BAEL-701 - TestNG reformatting

This commit is contained in:
slavisa-baeldung
2017-03-01 22:37:00 +01:00
parent 95e24dac2a
commit efdd45259f
5 changed files with 168 additions and 168 deletions

View File

@@ -4,11 +4,11 @@ import org.testng.Assert;
import org.testng.annotations.Test;
public class MultiThreadedTests {
@Test(threadPoolSize = 5, invocationCount = 10, timeOut = 1000)
public void givenMethod_whenRunInThreads_thenCorrect(){
public void givenMethod_whenRunInThreads_thenCorrect() {
int count = Thread.activeCount();
Assert.assertTrue(count>1);
Assert.assertTrue(count > 1);
}
}