Replies: 1 comment
-
You're right. Our I'll turn this into a ticket because it's at least worth investigating. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
First of all, thank you for a great project. I just started to dig in and it looks very promising!
Currently I'm trying to arrange some module tests and faced up an issue which I can't solve now. To be more clear in what I'm going to explain now I created an example project.
The project consists of two modules:
first
andsecond
which don't do anything as it's not important now.What I'm trying to achieve is to create some FirstModuleTestHelper which acts as some text fixture and is used by autowiring it in test-classes or other fixtures. This has always worked and works now with @SpringBootTest but it doesn't work with @ApplicationModuleTest and fails with this exception:
I tried to debug this, but being unfamiliar with code, didn't have any luck. Looks like it's somehow connected to archunit's
ImportOption
but I'm not sure.Anyway, what do you think about extending module test context to take into account such beans?
Beta Was this translation helpful? Give feedback.
All reactions