blob: f38731ac9e22af99267671f38035a5ddc3a50f73 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package locusts
import "testing"
func TestIntroduceLocusts(t *testing.T) {
defer func() {
if r := recover(); r != nil {
t.Errorf("Panic! The locusts are loose!")
}
}()
IntroduceLocusts()
}
|