forked from faucetsdn/udmi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
edddcbe
commit 05adf88
Showing
4 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
import com.google.udmi.util.CleanDateFormat; | ||
import java.io.File; | ||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
import java.util.Date; | ||
import java.util.List; | ||
import udmi.schema.EndpointConfiguration; | ||
|
@@ -30,7 +31,7 @@ public abstract class ProcessorTestBase extends MessageTestBase { | |
public static final String TEST_USER = "[email protected]"; | ||
public static final Date TEST_TIMESTAMP = CleanDateFormat.cleanDate(); | ||
public static final long ASYNC_PROCESSING_DELAY_MS = 2000; | ||
protected final List<Object> captured = new ArrayList<>(); | ||
protected final List<Object> captured = Collections.synchronizedList(new ArrayList<>()); | ||
protected IotAccessBase provider; | ||
private ProcessorBase processor; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters