We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Konsist looks really cool:
@Test fun `clean architecture layers have correct dependencies`() { Konsist .scopeFromProduction() .assertArchitecture { // Define layers val domain = Layer("Domain", "com.myapp.domain..") val presentation = Layer("Presentation", "com.myapp.presentation..") val data = Layer("Data", "com.myapp.data..") // Define architecture assertions domain.dependsOnNothing() presentation.dependsOn(domain) data.dependsOn(domain) } }
It might benefit from ratchetFrom.
ratchetFrom
The text was updated successfully, but these errors were encountered:
Nice! Looks similar to ArchUnit.
Sorry, something went wrong.
No branches or pull requests
Konsist looks really cool:
It might benefit from
ratchetFrom
.The text was updated successfully, but these errors were encountered: