Created
March 25, 2019 23:20
-
-
Save jleechan2015/71bbf7500ea9990cb4712dc38cf2ec31 to your computer and use it in GitHub Desktop.
foobar
This file contains hidden or 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
| class BackgroundPrefetchDurableJobProcessorTest { | |
| private val PROCESSOR_KEY = "processor_key" | |
| private val CONSTRAINT_NAME = "constraint_name" | |
| private val UUID = "Test" | |
| private val submittedTime = 100000L | |
| private val delta = 1000L | |
| private val runTime = submittedTime + TimeUnit.MINUTES.toMillis(1) + delta | |
| private val processRuntime = runTime + delta | |
| private val delayMins = 1L | |
| private val timeoutInMinutes = 5L | |
| private val numElements = 10 | |
| private val extraProperties = hashMapOf<String, String>("key1" to "1", "key2" to "2") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment