NewAssert return instance of Assert
(t *testing.T, caseName string)
| 27 | |
| 28 | // NewAssert return instance of Assert |
| 29 | func NewAssert(t *testing.T, caseName string) *Assert { |
| 30 | return &Assert{T: t, CaseName: caseName} |
| 31 | } |
| 32 | |
| 33 | // Equal check if expected is equal with actual |
| 34 | func (a *Assert) Equal(expected, actual any) { |
no outgoing calls
searching dependent graphs…