diff --git a/genimage/pic/pic_test.go b/genimage/pic/pic_test.go new file mode 100644 index 0000000..a44c7d2 --- /dev/null +++ b/genimage/pic/pic_test.go @@ -0,0 +1,17 @@ +package pic + +import "testing" + +func TestExpectedFailure(t *testing.T) { + const a, b = 3, 2 + if a != b { + t.Error("contrived failure") + } +} + +func TestExpectedSuccess(t *testing.T) { + const a, b = 3, 3 + if a != b { + t.Error("contrived failure") + } +}