c9400bc1ce
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
45 lines
371 B
Plaintext
45 lines
371 B
Plaintext
#Maven
|
|
target/
|
|
pom.xml.tag
|
|
pom.xml.releaseBackup
|
|
pom.xml.versionsBackup
|
|
release.properties
|
|
|
|
# Eclipse
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
bin/
|
|
|
|
# IntelliJ
|
|
.idea
|
|
*.ipr
|
|
*.iml
|
|
*.iws
|
|
|
|
# NetBeans
|
|
nb-configuration.xml
|
|
|
|
# Visual Studio Code
|
|
.vscode
|
|
.factorypath
|
|
|
|
# OSX
|
|
.DS_Store
|
|
|
|
# Vim
|
|
*.swp
|
|
*.swo
|
|
|
|
# patch
|
|
*.orig
|
|
*.rej
|
|
|
|
# Local environment
|
|
.env
|
|
|
|
#JReleaser
|
|
out/
|
|
|
|
/measurements*.txt
|