Skip to content

Commit

Permalink
added ignored tests back
Browse files Browse the repository at this point in the history
  • Loading branch information
lolocohen committed Jan 30, 2019
1 parent 3b6288a commit d70e1a7
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -119,7 +119,7 @@ public static void tearAbstractJobPersistenceTest() throws Exception {
* Test that a persisted job executes normally and is deleted from persistence after completion as configured.
* @throws Exception if any error occurs.
*/
//@Test(timeout = 10000)
@Test(timeout = 10000)
public void testSimplePersistedJob() throws Exception {
final int nbTasks = 10;
final String method = ReflectionUtils.getCurrentMethodName();
Expand Down Expand Up @@ -177,7 +177,7 @@ public void testSimplePersistedJobRetrieval() throws Exception {
* Test that a persisted job executes normally, can be cancelled and is deleted from persistence after completion as configured.
* @throws Exception if any error occurs.
*/
//@Test(timeout = 10000)
@Test(timeout = 10000)
public void testSimplePersistedJobCancellation() throws Exception {
final int nbTasks = 40;
final String method = ReflectionUtils.getCurrentMethodName();
Expand All @@ -204,7 +204,7 @@ public void testSimplePersistedJobCancellation() throws Exception {
* The client should recover gracefully and provide the job results without intervention.
* @throws Exception if any error occurs.
*/
//@Test(timeout = 15000)
@Test(timeout = 15000)
public void testJobAutoRecoveryOnDriverRestart() throws Exception {
final int nbTasks = 20;
final String method = ReflectionUtils.getCurrentMethodName();
Expand Down Expand Up @@ -254,7 +254,7 @@ public boolean evaluateWithException() throws Exception {
* The driver should resubmit the job for execution upon restart, and the client must be able to retrieve the job upon completion.
* @throws Exception if any error occurs.
*/
//@Test(timeout = 15000)
@Test(timeout = 15000)
public void testJobAutoExecuteOnDriverRestart() throws Exception {
final int nbTasks = 20;
final String method = ReflectionUtils.getCurrentMethodName();
Expand Down Expand Up @@ -306,7 +306,7 @@ public boolean evaluateWithException() throws Exception {
* Test that a persisted job executes and is persisted normally when submittd over two connections to the same driver.
* @throws Exception if any error occurs.
*/
//@Test(timeout = 10000)
@Test(timeout = 10000)
public void testJobSubmittedOnTwoChannels() throws Exception {
final int nbTasks = 2 * 10;
final String method = ReflectionUtils.getCurrentMethodName();
Expand Down

0 comments on commit d70e1a7

Please sign in to comment.