Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evref-bl/jacoco-tagger
Tag Famix Entity based on JaCoCo report
https://github.com/evref-bl/jacoco-tagger
Last synced: 9 days ago
JSON representation
Tag Famix Entity based on JaCoCo report
- Host: GitHub
- URL: https://github.com/evref-bl/jacoco-tagger
- Owner: Evref-BL
- Created: 2024-12-11T07:28:47.000Z (13 days ago)
- Default Branch: main
- Last Pushed: 2024-12-11T07:49:30.000Z (13 days ago)
- Last Synced: 2024-12-11T08:31:54.690Z (12 days ago)
- Language: Smalltalk
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JaCoCo-Tagger
I tag Moose entities based on a JaCoCo report.
## Usage
```st
JTTagger new "Create a tagger"
famixModel: myModel; "specify the model to tag"
import: 'JACOCO_TA_a08th02_16h05m58s_722\jacoco.xml' asFileReference. "give reference to the report to use for tagging"
```Retrieve the tagged entities
```st
tag := myModel tags last.
tagged := (tag taggedEntitiesInModel: myModel).
```## Installation
```st
Metacello new
githubUser: 'Evref-BL' project: 'JaCoCo-Tagger' commitish: 'main' path: 'src';
baseline: 'JaCoCoTagger';
load
```