File: assert_test.go

package info (click to toggle)
golang-github-anacrolix-missinggo 2.1.0-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 872 kB
  • sloc: makefile: 4
file content (16 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package expect

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestEqualDifferentIntTypes(t *testing.T) {
	var a int = 1
	var b int64 = 1
	assert.EqualValues(t, a, b)
	assert.NotEqual(t, a, b)
	assert.NotPanics(t, func() { Equal(a, b) })
	assert.Panics(t, func() { StrictlyEqual(a, b) })
}