Remove stack traces from tests

This commit is contained in:
Mahmoud Ben Hassine
2023-06-07 15:54:19 +02:00
parent 7f80b7230b
commit 0bfe31e569
7 changed files with 8 additions and 12 deletions

View File

@@ -198,7 +198,6 @@ class ConcurrentTransactionTests {
this.getClass().getClassLoader()));
}
catch (Exception e) {
e.printStackTrace();
}
properties.setUrl("jdbc:hsqldb:mem:" + databaseName + ";hsqldb.tx=mvcc");
properties.setUsername("sa");

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2019 the original author or authors.
* Copyright 2019-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -41,7 +41,6 @@ class AvroTestUtils {
createTestData();
}
catch (Exception e) {
e.printStackTrace();
}
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2022 the original author or authors.
* Copyright 2015-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -32,6 +32,7 @@ import org.springframework.lang.Nullable;
/**
* @author Matthew Ouyang
* @author Mahmoud Ben Hassine
*
*/
class SynchronizedItemStreamReaderTests {
@@ -115,7 +116,6 @@ class SynchronizedItemStreamReaderTests {
synchronizedItemStreamReader.update(executionContext);
}
catch (Exception ignore) {
ignore.printStackTrace();
}
}
};

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2017-2022 the original author or authors.
* Copyright 2017-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -35,6 +35,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
/**
* @author Glenn Renfro
* @author Mahmoud Ben Hassine
*/
class SynchronizedItemStreamReaderBuilderTests {
@@ -70,7 +71,6 @@ class SynchronizedItemStreamReaderBuilderTests {
synchronizedItemStreamReader.update(executionContext);
}
catch (Exception ignore) {
ignore.printStackTrace();
}
}
};

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2006-2022 the original author or authors.
* Copyright 2006-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -203,7 +203,6 @@ class SynchronousTests implements ApplicationContextAware {
}
catch (Exception e) {
// swallow it
e.printStackTrace();
}
return null;
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2006-2022 the original author or authors.
* Copyright 2006-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -26,6 +26,7 @@ import org.junit.jupiter.api.Test;
/**
* @author Dave Syer
* @author Mahmoud Ben Hassine
*
*/
class ThrottleLimitResultQueueTests {
@@ -65,7 +66,6 @@ class ThrottleLimitResultQueueTests {
Thread.sleep(100L);
}
catch (InterruptedException e) {
e.printStackTrace();
Thread.currentThread().interrupt();
}
queue.put("foo");

View File

@@ -106,7 +106,6 @@ class TransactionalPollingIntegrationTests implements ApplicationContextAware {
assertEquals(expected, processed);
}
catch (Throwable t) {
t.printStackTrace();
}
}