MCPcopy Index your code
hub / github.com/expr-lang/expr / Exactly

Method Exactly

internal/testify/require/require_forward.go:388–393  ·  view source on GitHub ↗

Exactly asserts that two objects are equal in value and type. a.Exactly(int32(123), int64(123))

(expected interface{}, actual interface{}, msgAndArgs ...interface{})

Source from the content-addressed store, hash-verified

386//
387// a.Exactly(int32(123), int64(123))
388func (a *Assertions) Exactly(expected interface{}, actual interface{}, msgAndArgs ...interface{}) {
389 if h, ok := a.t.(tHelper); ok {
390 h.Helper()
391 }
392 Exactly(a.t, expected, actual, msgAndArgs...)
393}
394
395// Exactlyf asserts that two objects are equal in value and type.
396//

Callers 1

TestExactlyWrapperFunction · 0.45

Calls 2

ExactlyFunction · 0.70
HelperMethod · 0.45

Tested by 1

TestExactlyWrapperFunction · 0.36