https://github.com/evref-bl/modest
Modular, multi-language, model-based unit test generation
https://github.com/evref-bl/modest
language-agnostic moose pharo test-generation
Last synced: 2 months ago
JSON representation
Modular, multi-language, model-based unit test generation
- Host: GitHub
- URL: https://github.com/evref-bl/modest
- Owner: Evref-BL
- License: mit
- Created: 2023-10-10T14:31:47.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-20T09:45:47.000Z (9 months ago)
- Last Synced: 2025-01-30T16:52:51.024Z (8 months ago)
- Topics: language-agnostic, moose, pharo, test-generation
- Language: Smalltalk
- Homepage:
- Size: 157 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Modest
Modular unit test generation using models.
Tests are generated using application traces, represented by [Famix-OpenTelemetry](https://github.com/moosetechnology/Famix-OpenTelemetry), and the serialized values they contain, represented by [Famix-Value](https://github.com/moosetechnology/Famix-Value), to generate a unit test model, represented by [Famix-UnitTest](https://github.com/moosetechnology/Famix-UnitTest).
This model is then exported into ASTs, usually using the [FAST](https://github.com/moosetechnology/FAST) family of models, which are finally exported into actual unit tests that can be integrated into a codebase.## Installation
```st
Metacello new
githubUser: 'Evref-BL' project: 'Modest' commitish: 'main' path: 'src';
baseline: 'Modest';
onConflictUseIncoming;
load
```