This repository includes the evaluation data for SmallAmp paper titled: "Small-Amp: Test Amplification in a Dynamically Typed Language"
For the details of the pull-request study, please visit this page.
The detailed result of our quantitative study, you can visit here.
First clone me using git:
git clone https://github.com/mabdi/SmallAmp-evaluations.git
cd SmallAmp-evaluations
and clone Small-Amp
inside SmallAmp-evaluations
folder:
git clone https://github.com/mabdi/small-amp.git
Then unzip zip files and also move the manifest file:
mkdir pharo-projects-files
tar -xvf experiments-20211027/projects.tar -C pharo-projects-files
cp -r projects/manifest small-amp/runner/projects
- Open a fresh Pharo image and install SmallAmp.
- Install a project based on its loader script
- Run SmallAmp (you can use DrTest UI)
NOTE: the projects in manifest are referring to the cloned projects. So, you may find them outdated.
In the recent versions of SmallAmp, we have integrated the tool with Github Actions. However, you still can run it locally. Please visit here for more information.
You can recreate the reports using the following commands:
cd small-amp/runner/
python3 runner.py -r longtable -d ../../pharo-projects-files/Bloc -p Bloc # Detailed reporting (tex format)
python3 runner.py -r sumtable -d ../../pharo-projects-files/Bloc -p Bloc # Summary reporting (tex format)
python3 runner.py -r ampslog -d ../../pharo-projects-files/Bloc -p Bloc # Input amplifiers, number of transformations
tsv format:
python3 runner.py -r longtable -d ../../pharo-projects-files/Bloc -p Bloc | tail -n +4 | sed -e 's/ & /\t/g' -e 's/\\\\$//g'