Update Testing authored by Fabian Nuraddin Alexander Gabel's avatar Fabian Nuraddin Alexander Gabel
......@@ -26,6 +26,17 @@ In order to modularize tests, the following generic variables are used:
Use this template in order to register new tests; replace `NN` and `Description` accordingly:
```bash
#!/bin/bash
# my-new-test-suite.sh
echo "--------------------------------------------------"
echo "Running tests in $0"
echo "--------------------------------------------------"
RESEARCH_TESTING=
LOGFILE=
SCRIPT=
rm -rf $LOGFILE && mkdir -p $RESEARCH_ROOT/log && touch $LOGFILE
#BEGIN Test NN: Description
T=NN
#echo "##################################################"
......
......