@@ -41,9 +41,8 @@ public class WorkPoolTests {
41
41
42
42
/**
43
43
* Test add work and remove work
44
- * @throws Exception untested
45
44
*/
46
- @ Test public void basicInOut () throws Exception {
45
+ @ Test public void basicInOut () {
47
46
Object one = new Object ();
48
47
Object two = new Object ();
49
48
@@ -70,9 +69,8 @@ public class WorkPoolTests {
70
69
71
70
/**
72
71
* Test add work when work in progress.
73
- * @throws Exception untested
74
72
*/
75
- @ Test public void workInWhileInProgress () throws Exception {
73
+ @ Test public void workInWhileInProgress () {
76
74
Object one = new Object ();
77
75
Object two = new Object ();
78
76
@@ -98,9 +96,8 @@ public class WorkPoolTests {
98
96
99
97
/**
100
98
* Test multiple work keys.
101
- * @throws Exception untested
102
99
*/
103
- @ Test public void interleavingKeys () throws Exception {
100
+ @ Test public void interleavingKeys () {
104
101
Object one = new Object ();
105
102
Object two = new Object ();
106
103
Object three = new Object ();
@@ -129,9 +126,8 @@ public class WorkPoolTests {
129
126
130
127
/**
131
128
* Test removal of key (with work)
132
- * @throws Exception untested
133
129
*/
134
- @ Test public void unregisterKey () throws Exception {
130
+ @ Test public void unregisterKey () {
135
131
Object one = new Object ();
136
132
Object two = new Object ();
137
133
Object three = new Object ();
@@ -154,9 +150,8 @@ public class WorkPoolTests {
154
150
155
151
/**
156
152
* Test removal of all keys (with work).
157
- * @throws Exception untested
158
153
*/
159
- @ Test public void unregisterAllKeys () throws Exception {
154
+ @ Test public void unregisterAllKeys () {
160
155
Object one = new Object ();
161
156
Object two = new Object ();
162
157
Object three = new Object ();
0 commit comments