mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 03:44:13 -04:00
17 lines
334 B
Plaintext
17 lines
334 B
Plaintext
# $NetBSD: tests.subr,v 1.2 2005/11/24 19:20:18 rillig Exp $
|
|
#
|
|
|
|
# usage: testcase_start <testname>
|
|
testcase_start() {
|
|
printf " Running testcase %s\\n" "$1"
|
|
}
|
|
|
|
# usage: assert_equal <testname> <expected> <got>
|
|
assert_equal() {
|
|
case $2 in
|
|
"$3") ;;
|
|
*) echo "[assert_equal:$1] expected \"$2\", got \"$3\"." 1>&2
|
|
return 1;;
|
|
esac
|
|
}
|