assert
Basic Example
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestSomething(t *testing.T) {
assert.Equal(t, "Hi", "Hi", "The two words should be the same.")
}Common
Last updated
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestSomething(t *testing.T) {
assert.Equal(t, "Hi", "Hi", "The two words should be the same.")
}Last updated