10 lines
122 B
Bash
Executable File
10 lines
122 B
Bash
Executable File
#! /bin/sh
|
|
# file: examples/equality_test.sh
|
|
|
|
testEquality() {
|
|
assertEquals 1 1
|
|
}
|
|
|
|
# Load and run shUnit2.
|
|
. ../shunit2
|