python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Apache OpenWebBeans SEContainer throws UnsatisfiedResolutionException
I want to test my classes in an embedded CDI container. For this reason i'm using OpenWebBeans' integration for Junit 5. This is a sample test class:
@Cdi(disableDiscovery = true, classes = {Pbkdf2Pas...

cidra
Votes: 0
Answers: 0
Arquillian mixed mode not working on TestNG
I am trying to run a test suite in mixed mode using Arquillian and TestNG.
Based on the documentation here: http://arquillian.org/arquillian-core/#mixed-mode
I would expect to be able to write my test...

KyleAure
Votes: 0
Answers: 1
How to unit test methods together with its constraint validators (which some should be mocked out)?
My app has a service layer which is composed by CDI applications scoped beans:
@ApplicationScoped
@Transactional
public class PostService {
@Inject private PostRepository postRepo;
@Inject pri...

cidra
Votes: 0
Answers: 1
Shim or map javax.ws.rs to jakarta.ws.rs
I'm looking for a shim or proxy to forward calls from javax.ws.rs to jakarta.ws.rs namespace. I have external dependencies which consume javax.ws.rs. In general I'm looking for something what exists i...

jkroepke
Votes: 0
Answers: 0