mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 03:01:12 +00:00
fd8c05846f
Fixed concurrency problem in id generation of Task
17 lines
304 B
Java
17 lines
304 B
Java
package com.iluwatar.threadpool;
|
|
|
|
/**
|
|
* Date: 12/30/15 - 18:23 PM
|
|
*
|
|
* @author Jeroen Meulemeester
|
|
*/
|
|
public class PotatoPeelingTaskTest extends TaskTest<PotatoPeelingTask> {
|
|
|
|
/**
|
|
* Create a new test instance
|
|
*/
|
|
public PotatoPeelingTaskTest() {
|
|
super(PotatoPeelingTask::new, 200);
|
|
}
|
|
|
|
} |