-
-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add async JUnit tests, on broadcast event and hover list test (#7053)
* init commit * add broadcasting * add broadcasting tests * add test for async test * make broadcast get called async * update events * update ExprMessage * fixed regular tests * fixed remove in ExprHoverList * fixed burning tests not completing * use pattern matching * remove double if using junit check, add starting values * revert ExprHoverList changes * revert ExprHoverList changes * fix tests * Update src/main/java/ch/njol/skript/Skript.java Co-authored-by: sovdee <10354869+sovdeeth@users.noreply.github.com> * Update src/main/java/ch/njol/skript/Skript.java Co-authored-by: sovdee <10354869+sovdeeth@users.noreply.github.com> * update annot * oops --------- Co-authored-by: sovdee <10354869+sovdeeth@users.noreply.github.com> Co-authored-by: Moderocky <admin@moderocky.com>
- Loading branch information
1 parent
e926b38
commit b36ca00
Showing
8 changed files
with
277 additions
and
108 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
9 changes: 9 additions & 0 deletions
9
src/main/java/ch/njol/skript/test/runner/SkriptAsyncJUnitTest.java
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,9 @@ | ||
package ch.njol.skript.test.runner; | ||
|
||
/** | ||
* All methods in this class marked with @Test will be run on a different thread from the main one. | ||
* All tests are still done sequentially. | ||
*/ | ||
public abstract class SkriptAsyncJUnitTest extends SkriptJUnitTest { | ||
|
||
} |
Oops, something went wrong.