diff options
| author | Alexander Yastrebov <yastrebov.alex@gmail.com> | 2024-01-04 13:08:32 +0100 |
|---|---|---|
| committer | Alexander Yastrebov <yastrebov.alex@gmail.com> | 2024-01-04 13:18:29 +0100 |
| commit | c9400bc1ce8cad61e6acf6ec5d0076b7f0695d3e (patch) | |
| tree | b265d303d54217ee047003eabb344c800bacbd41 /.gitignore | |
| parent | 9a558e24516de2edc3a3e9bfdef319dec58ba050 (diff) | |
test: add test samples
Adds test samples that can be used for unit tests or to verify
implementations via:
```bash
for sample in $(ls src/test/resources/samples/*.txt)
do
echo "Validating $sample"
rm -f measurements.txt
ln -s $sample measurements.txt
diff <(./calculate_average.sh) ${sample%.txt}.out
done
rm measurements.txt
```
For #61
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,4 +41,4 @@ nb-configuration.xml #JReleaser out/ -measurements*.txt +/measurements*.txt |
