Sunshine allows you to manage suits of your automated tests directly from Java code. It supports TestNg, JUnit 4, and JUnit 5.
Please read the documentation at https://sunshine.readthedocs.io.
If you have any questions or want more functionality, please submit a new issue.
Before sending any pull request, please discuss requirements/changes to be implemented using an existing issue or by creating a new one.
If you will install https://elegant-git.bees-hive.org and use Git via CLI, all required workflows
will be executed automatically. Otherwise, you can do it manually by running ./workflows
script.
We use https://github.com/diffplug/spotless to format the code. Please run
./gradlew spotlessApply
to call the formatting manually.
Run ./gradlew
(or gradlew.bat
). It will execute unit, integration tests, and formatting verifications.
Automatic analysis of documentation changes in not configured. That's why manual validation is required.
The following snippet allows generation of HTML version of the documentation
cd docs
rm -r _build && make html
open _build/html/index.html
Please take into account, you need to install required Python's dependencies with pip install -r docs/requirements.txt
before.