Skip to content

Commit

Permalink
Ajuste dos tempos de execução.
Browse files Browse the repository at this point in the history
  • Loading branch information
mariojp committed Jun 12, 2017
1 parent 26d3dc5 commit 12169ed
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 2016/primeirafase/competicao/B/src/test/java/Teste.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static Iterable<Object[]> data() {
return Arrays.asList(lista);
}

@Test(timeout = 1000)
@Test(timeout = 6000)
public void test() {
inContent = new ByteArrayInputStream((input).getBytes());
System.setIn(inContent);
Expand Down
2 changes: 1 addition & 1 deletion 2016/primeirafase/competicao/C/src/test/java/Teste.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static Iterable<Object[]> data() {
return Arrays.asList(lista);
}

@Test(timeout = 1000)
@Test(timeout = 3000)
public void test() {
inContent = new ByteArrayInputStream((input).getBytes());
System.setIn(inContent);
Expand Down
2 changes: 1 addition & 1 deletion 2016/primeirafase/competicao/E/src/test/java/Teste.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static Iterable<Object[]> data() {
return Arrays.asList(lista);
}

@Test(timeout = 1000)
@Test(timeout = 2000)
public void test() {
inContent = new ByteArrayInputStream((input).getBytes());
System.setIn(inContent);
Expand Down
2 changes: 1 addition & 1 deletion 2016/primeirafase/competicao/G/src/test/java/Teste.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static Iterable<Object[]> data() {
return Arrays.asList(lista);
}

@Test(timeout = 1000)
@Test(timeout = 3000)
public void test() {
inContent = new ByteArrayInputStream((input).getBytes());
System.setIn(inContent);
Expand Down
2 changes: 1 addition & 1 deletion 2016/primeirafase/competicao/J/src/test/java/Teste.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static Iterable<Object[]> data() {
return Arrays.asList(lista);
}

@Test(timeout = 1000)
@Test(timeout = 3000)
public void test() {
inContent = new ByteArrayInputStream((input).getBytes());
System.setIn(inContent);
Expand Down

0 comments on commit 12169ed

Please sign in to comment.