package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Test(t *testing.T) {
if !assert.IsIncreasing(t, 0) {
t.Log("assertion is false, test should fail")
}
}
=== RUN Test
prog_test.go:11: assertion is false, test should fail
--- PASS: Test (0.00s)
PASS
go.dev/play
yields
#1124 would fix this.