Changes
Page history
Update Testing
authored
Aug 29, 2021
by
Fabian Nuraddin Alexander Gabel
Hide whitespace changes
Inline
Side-by-side
Testing.md
View page @
96ee0485
...
@@ -26,6 +26,17 @@ In order to modularize tests, the following generic variables are used:
...
@@ -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:
Use this template in order to register new tests; replace
`NN`
and
`Description`
accordingly:
```
bash
```
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
#BEGIN Test NN: Description
T
=
NN
T
=
NN
#echo "##################################################"
#echo "##################################################"
...
...
...
...