Results 23 comments of Krzysztof Sierszeń

I think the question meant here was: is it possible to output to an **externally provided** stream, rather than one `hummus-recipe` itself provides? The workaround I found was to use:...

Note sure if I follow, but... `RestController` is an annotation, which is why `assignableTypes` won't work. Why not simply make the REST controllers implement a marker interface *in addition to*...

Thanks for the feedback! > One important thing to keep in mind is that this is a library, not an application. I.e. we need to be extra conservative about dependencies...

> | EDIT# no. 2 Added relevant test to ArchUnitTestEngineTest; also, fixed a couple of bugs > > If there are bugs in there it would be cool if you...

Hi! I'm thinking of giving it a go, could you describe the intended use case, though? I was thinking that perhaps it would be somewhat more useful to be able...

@Airblader This is a very specific use case, though, and I'm not sure `JavaType.getRawTypesInvolvedInSignature()` is the right approach. `List` would give you `[List.class, MyStableType.class]`; would you then expect `List` to...

I'm not sure I follow. What is wrong with the existing tooling support? Is it not possible to exclude test classes by category / file name? Also, what's the point...

@codecholeric Please have a look at [my draft PR](https://github.com/TNG/ArchUnit/pull/834/files) when you have a moment. The PR: * introduces support for JUnit 4's `Assume` API * introduces support for Jupiter's `@EnabledIfXxx`...

If I may drop in my two cents, the PR can be conceptually divided into two parts: (1) making sure test filtering works with popular test tools, and (2) better...

> @crizzis Yes, I think that's a good idea, I'll try to do that 👍 @codecholeric Any progress on this one? I have a bit of time I could dedicate...