-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run
Future
tests sequentially, not concurrently (#359)
Fixes #358.
- Loading branch information
1 parent
1520fe2
commit 7cc0a8e
Showing
3 changed files
with
23 additions
and
11 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package test.utest | ||
import utest._ | ||
import concurrent.{Future, ExecutionContext} | ||
|
||
object FutureTest extends TestSuite { | ||
implicit val ec: ExecutionContext = ExecutionContext.global | ||
@volatile var flag = false | ||
|
||
def tests = TestSuite { | ||
test("runs before next test"){ | ||
Future { flag = true } | ||
} | ||
test("previous test ran first"){ | ||
assert(flag) | ||
} | ||
} | ||
} |