Replies: 2 comments 4 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
i annotated my repository class with them :(service tests work with annotation @RunOnVertxContext in class level)
@QuarkusTest
@WithSession
@RunOnVertxContext.
class ABC.
created tests like this
@test
void getmethod(UniAsserter uniAsserter){
uniAsserter.assertThat(....)
}
when i run tests from class level i got "java.lang.IllegalStateException: Can't get the context safety flag: the current context is not a duplicated context" why?
in same time if i anotate every method with @RunOnVertxContext and run, my tests pass.
How can i fix this issue?
Beta Was this translation helpful? Give feedback.
All reactions