ArchUnit is a free, simple and extensible library for checking the architecture of your Java code using any plain Java unit test framework.  That is,

Unit test your Java architecture

submited by
Style Pass
2021-05-25 05:30:04

ArchUnit is a free, simple and extensible library for checking the architecture of your Java code using any plain Java unit test framework. That is, ArchUnit can check dependencies between packages and classes, layers and slices, check for cyclic dependencies and more. It does so by analyzing given Java bytecode, importing all classes into a Java code structure. You can find examples for the current release at ArchUnit Examples and the sources on GitHub.

Leave a Comment