19 lines
468 B
Bash
19 lines
468 B
Bash
#!/bin/sh
|
|
|
|
# This script is basically just a convenient launch pad script for running all
|
|
# the tests at once
|
|
# Most tests should be runnable by doing ./script.sh name_of_test
|
|
|
|
|
|
# First the 'good' input tests
|
|
# This is to say that we get input that:
|
|
# 1. is properly formatted
|
|
# 2. has all the info we need & none we don't
|
|
# 3. has basically nothing malicious about it
|
|
|
|
sh ./tests/verify_basic_cases.sh
|
|
|
|
sh ./tests/verify_err_cases.sh
|
|
|
|
sh ./tests/verify_mal_cases.sh
|