fulibTools is a library for testing that complements the fulib code generator. It provides features like class and object diagrams as well as a mechanism for automatically updating code snippets in documentation.
build.gradle:
repositories {
// ...
mavenCentral()
}dependencies {
// ...
// https://mvnrepository.com/artifact/org.fulib/fulibTools
testImplementation group: 'org.fulib', name: 'fulibTools', version: '1.6.0'
}fulibTools can generate class diagrams from a fulib ClassModel. View
the ClassDiagrams JavaDocs to
find out more.
You can create Object Diagrams using
the ObjectDiagrams utility.
This feature allows you to keep your documentation up-to-date by automatically copying code fragments between source
files. Check out
the CodeFragments JavaDocs
for an extensive explanation.