// Code generated with github.com/stretchr/testify/_codegen; DO NOT EDIT.

package assert

import (
	http 
	url 
	time 
)

// Conditionf uses a Comparison to assert a complex condition.
func ( TestingT,  Comparison,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Condition(, , append([]interface{}{}, ...)...)
}

// Containsf asserts that the specified string, list(array, slice...) or map contains the
// specified substring or element.
//
//	assert.Containsf(t, "Hello World", "World", "error message %s", "formatted")
//	assert.Containsf(t, ["Hello", "World"], "World", "error message %s", "formatted")
//	assert.Containsf(t, {"Hello": "World"}, "Hello", "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Contains(, , , append([]interface{}{}, ...)...)
}

// DirExistsf checks whether a directory exists in the given path. It also fails
// if the path is a file rather a directory or there is an error checking whether it exists.
func ( TestingT,  string,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return DirExists(, , append([]interface{}{}, ...)...)
}

// ElementsMatchf asserts that the specified listA(array, slice...) is equal to specified
// listB(array, slice...) ignoring the order of the elements. If there are duplicate elements,
// the number of appearances of each of them in both lists should match.
//
// assert.ElementsMatchf(t, [1, 3, 2, 3], [1, 3, 3, 2], "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return ElementsMatch(, , , append([]interface{}{}, ...)...)
}

// Emptyf asserts that the given value is "empty".
//
// [Zero values] are "empty".
//
// Arrays are "empty" if every element is the zero value of the type (stricter than "empty").
//
// Slices, maps and channels with zero length are "empty".
//
// Pointer values are "empty" if the pointer is nil or if the pointed value is "empty".
//
//	assert.Emptyf(t, obj, "error message %s", "formatted")
//
// [Zero values]: https://go.dev/ref/spec#The_zero_value
func ( TestingT,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Empty(, , append([]interface{}{}, ...)...)
}

// Equalf asserts that two objects are equal.
//
//	assert.Equalf(t, 123, 123, "error message %s", "formatted")
//
// Pointer variable equality is determined based on the equality of the
// referenced values (as opposed to the memory addresses). Function equality
// cannot be determined and will always fail.
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Equal(, , , append([]interface{}{}, ...)...)
}

// EqualErrorf asserts that a function returned an error (i.e. not `nil`)
// and that it is equal to the provided error.
//
//	actualObj, err := SomeFunction()
//	assert.EqualErrorf(t, err,  expectedErrorString, "error message %s", "formatted")
func ( TestingT,  error,  string,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return EqualError(, , , append([]interface{}{}, ...)...)
}

// EqualExportedValuesf asserts that the types of two objects are equal and their public
// fields are also equal. This is useful for comparing structs that have private fields
// that could potentially differ.
//
//	 type S struct {
//		Exported     	int
//		notExported   	int
//	 }
//	 assert.EqualExportedValuesf(t, S{1, 2}, S{1, 3}, "error message %s", "formatted") => true
//	 assert.EqualExportedValuesf(t, S{1, 2}, S{2, 3}, "error message %s", "formatted") => false
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return EqualExportedValues(, , , append([]interface{}{}, ...)...)
}

// EqualValuesf asserts that two objects are equal or convertible to the larger
// type and equal.
//
//	assert.EqualValuesf(t, uint32(123), int32(123), "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return EqualValues(, , , append([]interface{}{}, ...)...)
}

// Errorf asserts that a function returned an error (i.e. not `nil`).
//
//	actualObj, err := SomeFunction()
//	assert.Errorf(t, err, "error message %s", "formatted")
func ( TestingT,  error,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Error(, , append([]interface{}{}, ...)...)
}

// ErrorAsf asserts that at least one of the errors in err's chain matches target, and if so, sets target to that error value.
// This is a wrapper for errors.As.
func ( TestingT,  error,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return ErrorAs(, , , append([]interface{}{}, ...)...)
}

// ErrorContainsf asserts that a function returned an error (i.e. not `nil`)
// and that the error contains the specified substring.
//
//	actualObj, err := SomeFunction()
//	assert.ErrorContainsf(t, err,  expectedErrorSubString, "error message %s", "formatted")
func ( TestingT,  error,  string,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return ErrorContains(, , , append([]interface{}{}, ...)...)
}

// ErrorIsf asserts that at least one of the errors in err's chain matches target.
// This is a wrapper for errors.Is.
func ( TestingT,  error,  error,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return ErrorIs(, , , append([]interface{}{}, ...)...)
}

// Eventuallyf asserts that given condition will be met in waitFor time,
// periodically checking target function each tick.
//
//	assert.Eventuallyf(t, func() bool { return true; }, time.Second, 10*time.Millisecond, "error message %s", "formatted")
func ( TestingT,  func() bool,  time.Duration,  time.Duration,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Eventually(, , , , append([]interface{}{}, ...)...)
}

// EventuallyWithTf asserts that given condition will be met in waitFor time,
// periodically checking target function each tick. In contrast to Eventually,
// it supplies a CollectT to the condition function, so that the condition
// function can use the CollectT to call other assertions.
// The condition is considered "met" if no errors are raised in a tick.
// The supplied CollectT collects all errors from one tick (if there are any).
// If the condition is not met before waitFor, the collected errors of
// the last tick are copied to t.
//
//	externalValue := false
//	go func() {
//		time.Sleep(8*time.Second)
//		externalValue = true
//	}()
//	assert.EventuallyWithTf(t, func(c *assert.CollectT, "error message %s", "formatted") {
//		// add assertions as needed; any assertion failure will fail the current tick
//		assert.True(c, externalValue, "expected 'externalValue' to be true")
//	}, 10*time.Second, 1*time.Second, "external state has not changed to 'true'; still false")
func ( TestingT,  func( *CollectT),  time.Duration,  time.Duration,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return EventuallyWithT(, , , , append([]interface{}{}, ...)...)
}

// Exactlyf asserts that two objects are equal in value and type.
//
//	assert.Exactlyf(t, int32(123), int64(123), "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Exactly(, , , append([]interface{}{}, ...)...)
}

// Failf reports a failure through
func ( TestingT,  string,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Fail(, , append([]interface{}{}, ...)...)
}

// FailNowf fails test
func ( TestingT,  string,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return FailNow(, , append([]interface{}{}, ...)...)
}

// Falsef asserts that the specified value is false.
//
//	assert.Falsef(t, myBool, "error message %s", "formatted")
func ( TestingT,  bool,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return False(, , append([]interface{}{}, ...)...)
}

// FileExistsf checks whether a file exists in the given path. It also fails if
// the path points to a directory or there is an error when trying to check the file.
func ( TestingT,  string,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return FileExists(, , append([]interface{}{}, ...)...)
}

// Greaterf asserts that the first element is greater than the second
//
//	assert.Greaterf(t, 2, 1, "error message %s", "formatted")
//	assert.Greaterf(t, float64(2), float64(1), "error message %s", "formatted")
//	assert.Greaterf(t, "b", "a", "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Greater(, , , append([]interface{}{}, ...)...)
}

// GreaterOrEqualf asserts that the first element is greater than or equal to the second
//
//	assert.GreaterOrEqualf(t, 2, 1, "error message %s", "formatted")
//	assert.GreaterOrEqualf(t, 2, 2, "error message %s", "formatted")
//	assert.GreaterOrEqualf(t, "b", "a", "error message %s", "formatted")
//	assert.GreaterOrEqualf(t, "b", "b", "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return GreaterOrEqual(, , , append([]interface{}{}, ...)...)
}

// HTTPBodyContainsf asserts that a specified handler returns a
// body that contains a string.
//
//	assert.HTTPBodyContainsf(t, myHandler, "GET", "www.google.com", nil, "I'm Feeling Lucky", "error message %s", "formatted")
//
// Returns whether the assertion was successful (true) or not (false).
func ( TestingT,  http.HandlerFunc,  string,  string,  url.Values,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return HTTPBodyContains(, , , , , , append([]interface{}{}, ...)...)
}

// HTTPBodyNotContainsf asserts that a specified handler returns a
// body that does not contain a string.
//
//	assert.HTTPBodyNotContainsf(t, myHandler, "GET", "www.google.com", nil, "I'm Feeling Lucky", "error message %s", "formatted")
//
// Returns whether the assertion was successful (true) or not (false).
func ( TestingT,  http.HandlerFunc,  string,  string,  url.Values,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return HTTPBodyNotContains(, , , , , , append([]interface{}{}, ...)...)
}

// HTTPErrorf asserts that a specified handler returns an error status code.
//
//	assert.HTTPErrorf(t, myHandler, "POST", "/a/b/c", url.Values{"a": []string{"b", "c"}}
//
// Returns whether the assertion was successful (true) or not (false).
func ( TestingT,  http.HandlerFunc,  string,  string,  url.Values,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return HTTPError(, , , , , append([]interface{}{}, ...)...)
}

// HTTPRedirectf asserts that a specified handler returns a redirect status code.
//
//	assert.HTTPRedirectf(t, myHandler, "GET", "/a/b/c", url.Values{"a": []string{"b", "c"}}
//
// Returns whether the assertion was successful (true) or not (false).
func ( TestingT,  http.HandlerFunc,  string,  string,  url.Values,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return HTTPRedirect(, , , , , append([]interface{}{}, ...)...)
}

// HTTPStatusCodef asserts that a specified handler returns a specified status code.
//
//	assert.HTTPStatusCodef(t, myHandler, "GET", "/notImplemented", nil, 501, "error message %s", "formatted")
//
// Returns whether the assertion was successful (true) or not (false).
func ( TestingT,  http.HandlerFunc,  string,  string,  url.Values,  int,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return HTTPStatusCode(, , , , , , append([]interface{}{}, ...)...)
}

// HTTPSuccessf asserts that a specified handler returns a success status code.
//
//	assert.HTTPSuccessf(t, myHandler, "POST", "http://www.google.com", nil, "error message %s", "formatted")
//
// Returns whether the assertion was successful (true) or not (false).
func ( TestingT,  http.HandlerFunc,  string,  string,  url.Values,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return HTTPSuccess(, , , , , append([]interface{}{}, ...)...)
}

// Implementsf asserts that an object is implemented by the specified interface.
//
//	assert.Implementsf(t, (*MyInterface)(nil), new(MyObject), "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Implements(, , , append([]interface{}{}, ...)...)
}

// InDeltaf asserts that the two numerals are within delta of each other.
//
//	assert.InDeltaf(t, math.Pi, 22/7.0, 0.01, "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  float64,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return InDelta(, , , , append([]interface{}{}, ...)...)
}

// InDeltaMapValuesf is the same as InDelta, but it compares all values between two maps. Both maps must have exactly the same keys.
func ( TestingT,  interface{},  interface{},  float64,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return InDeltaMapValues(, , , , append([]interface{}{}, ...)...)
}

// InDeltaSlicef is the same as InDelta, except it compares two slices.
func ( TestingT,  interface{},  interface{},  float64,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return InDeltaSlice(, , , , append([]interface{}{}, ...)...)
}

// InEpsilonf asserts that expected and actual have a relative error less than epsilon
func ( TestingT,  interface{},  interface{},  float64,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return InEpsilon(, , , , append([]interface{}{}, ...)...)
}

// InEpsilonSlicef is the same as InEpsilon, except it compares each value from two slices.
func ( TestingT,  interface{},  interface{},  float64,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return InEpsilonSlice(, , , , append([]interface{}{}, ...)...)
}

// IsDecreasingf asserts that the collection is decreasing
//
//	assert.IsDecreasingf(t, []int{2, 1, 0}, "error message %s", "formatted")
//	assert.IsDecreasingf(t, []float{2, 1}, "error message %s", "formatted")
//	assert.IsDecreasingf(t, []string{"b", "a"}, "error message %s", "formatted")
func ( TestingT,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return IsDecreasing(, , append([]interface{}{}, ...)...)
}

// IsIncreasingf asserts that the collection is increasing
//
//	assert.IsIncreasingf(t, []int{1, 2, 3}, "error message %s", "formatted")
//	assert.IsIncreasingf(t, []float{1, 2}, "error message %s", "formatted")
//	assert.IsIncreasingf(t, []string{"a", "b"}, "error message %s", "formatted")
func ( TestingT,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return IsIncreasing(, , append([]interface{}{}, ...)...)
}

// IsNonDecreasingf asserts that the collection is not decreasing
//
//	assert.IsNonDecreasingf(t, []int{1, 1, 2}, "error message %s", "formatted")
//	assert.IsNonDecreasingf(t, []float{1, 2}, "error message %s", "formatted")
//	assert.IsNonDecreasingf(t, []string{"a", "b"}, "error message %s", "formatted")
func ( TestingT,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return IsNonDecreasing(, , append([]interface{}{}, ...)...)
}

// IsNonIncreasingf asserts that the collection is not increasing
//
//	assert.IsNonIncreasingf(t, []int{2, 1, 1}, "error message %s", "formatted")
//	assert.IsNonIncreasingf(t, []float{2, 1}, "error message %s", "formatted")
//	assert.IsNonIncreasingf(t, []string{"b", "a"}, "error message %s", "formatted")
func ( TestingT,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return IsNonIncreasing(, , append([]interface{}{}, ...)...)
}

// IsNotTypef asserts that the specified objects are not of the same type.
//
//	assert.IsNotTypef(t, &NotMyStruct{}, &MyStruct{}, "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return IsNotType(, , , append([]interface{}{}, ...)...)
}

// IsTypef asserts that the specified objects are of the same type.
//
//	assert.IsTypef(t, &MyStruct{}, &MyStruct{}, "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return IsType(, , , append([]interface{}{}, ...)...)
}

// JSONEqf asserts that two JSON strings are equivalent.
//
//	assert.JSONEqf(t, `{"hello": "world", "foo": "bar"}`, `{"foo": "bar", "hello": "world"}`, "error message %s", "formatted")
func ( TestingT,  string,  string,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return JSONEq(, , , append([]interface{}{}, ...)...)
}

// Lenf asserts that the specified object has specific length.
// Lenf also fails if the object has a type that len() not accept.
//
//	assert.Lenf(t, mySlice, 3, "error message %s", "formatted")
func ( TestingT,  interface{},  int,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Len(, , , append([]interface{}{}, ...)...)
}

// Lessf asserts that the first element is less than the second
//
//	assert.Lessf(t, 1, 2, "error message %s", "formatted")
//	assert.Lessf(t, float64(1), float64(2), "error message %s", "formatted")
//	assert.Lessf(t, "a", "b", "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Less(, , , append([]interface{}{}, ...)...)
}

// LessOrEqualf asserts that the first element is less than or equal to the second
//
//	assert.LessOrEqualf(t, 1, 2, "error message %s", "formatted")
//	assert.LessOrEqualf(t, 2, 2, "error message %s", "formatted")
//	assert.LessOrEqualf(t, "a", "b", "error message %s", "formatted")
//	assert.LessOrEqualf(t, "b", "b", "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return LessOrEqual(, , , append([]interface{}{}, ...)...)
}

// Negativef asserts that the specified element is negative
//
//	assert.Negativef(t, -1, "error message %s", "formatted")
//	assert.Negativef(t, -1.23, "error message %s", "formatted")
func ( TestingT,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Negative(, , append([]interface{}{}, ...)...)
}

// Neverf asserts that the given condition doesn't satisfy in waitFor time,
// periodically checking the target function each tick.
//
//	assert.Neverf(t, func() bool { return false; }, time.Second, 10*time.Millisecond, "error message %s", "formatted")
func ( TestingT,  func() bool,  time.Duration,  time.Duration,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Never(, , , , append([]interface{}{}, ...)...)
}

// Nilf asserts that the specified object is nil.
//
//	assert.Nilf(t, err, "error message %s", "formatted")
func ( TestingT,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Nil(, , append([]interface{}{}, ...)...)
}

// NoDirExistsf checks whether a directory does not exist in the given path.
// It fails if the path points to an existing _directory_ only.
func ( TestingT,  string,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NoDirExists(, , append([]interface{}{}, ...)...)
}

// NoErrorf asserts that a function returned no error (i.e. `nil`).
//
//	  actualObj, err := SomeFunction()
//	  if assert.NoErrorf(t, err, "error message %s", "formatted") {
//		   assert.Equal(t, expectedObj, actualObj)
//	  }
func ( TestingT,  error,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NoError(, , append([]interface{}{}, ...)...)
}

// NoFileExistsf checks whether a file does not exist in a given path. It fails
// if the path points to an existing _file_ only.
func ( TestingT,  string,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NoFileExists(, , append([]interface{}{}, ...)...)
}

// NotContainsf asserts that the specified string, list(array, slice...) or map does NOT contain the
// specified substring or element.
//
//	assert.NotContainsf(t, "Hello World", "Earth", "error message %s", "formatted")
//	assert.NotContainsf(t, ["Hello", "World"], "Earth", "error message %s", "formatted")
//	assert.NotContainsf(t, {"Hello": "World"}, "Earth", "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotContains(, , , append([]interface{}{}, ...)...)
}

// NotElementsMatchf asserts that the specified listA(array, slice...) is NOT equal to specified
// listB(array, slice...) ignoring the order of the elements. If there are duplicate elements,
// the number of appearances of each of them in both lists should not match.
// This is an inverse of ElementsMatch.
//
// assert.NotElementsMatchf(t, [1, 1, 2, 3], [1, 1, 2, 3], "error message %s", "formatted") -> false
//
// assert.NotElementsMatchf(t, [1, 1, 2, 3], [1, 2, 3], "error message %s", "formatted") -> true
//
// assert.NotElementsMatchf(t, [1, 2, 3], [1, 2, 4], "error message %s", "formatted") -> true
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotElementsMatch(, , , append([]interface{}{}, ...)...)
}

// NotEmptyf asserts that the specified object is NOT [Empty].
//
//	if assert.NotEmptyf(t, obj, "error message %s", "formatted") {
//	  assert.Equal(t, "two", obj[1])
//	}
func ( TestingT,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotEmpty(, , append([]interface{}{}, ...)...)
}

// NotEqualf asserts that the specified values are NOT equal.
//
//	assert.NotEqualf(t, obj1, obj2, "error message %s", "formatted")
//
// Pointer variable equality is determined based on the equality of the
// referenced values (as opposed to the memory addresses).
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotEqual(, , , append([]interface{}{}, ...)...)
}

// NotEqualValuesf asserts that two objects are not equal even when converted to the same type
//
//	assert.NotEqualValuesf(t, obj1, obj2, "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotEqualValues(, , , append([]interface{}{}, ...)...)
}

// NotErrorAsf asserts that none of the errors in err's chain matches target,
// but if so, sets target to that error value.
func ( TestingT,  error,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotErrorAs(, , , append([]interface{}{}, ...)...)
}

// NotErrorIsf asserts that none of the errors in err's chain matches target.
// This is a wrapper for errors.Is.
func ( TestingT,  error,  error,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotErrorIs(, , , append([]interface{}{}, ...)...)
}

// NotImplementsf asserts that an object does not implement the specified interface.
//
//	assert.NotImplementsf(t, (*MyInterface)(nil), new(MyObject), "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotImplements(, , , append([]interface{}{}, ...)...)
}

// NotNilf asserts that the specified object is not nil.
//
//	assert.NotNilf(t, err, "error message %s", "formatted")
func ( TestingT,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotNil(, , append([]interface{}{}, ...)...)
}

// NotPanicsf asserts that the code inside the specified PanicTestFunc does NOT panic.
//
//	assert.NotPanicsf(t, func(){ RemainCalm() }, "error message %s", "formatted")
func ( TestingT,  PanicTestFunc,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotPanics(, , append([]interface{}{}, ...)...)
}

// NotRegexpf asserts that a specified regexp does not match a string.
//
//	assert.NotRegexpf(t, regexp.MustCompile("starts"), "it's starting", "error message %s", "formatted")
//	assert.NotRegexpf(t, "^start", "it's not starting", "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotRegexp(, , , append([]interface{}{}, ...)...)
}

// NotSamef asserts that two pointers do not reference the same object.
//
//	assert.NotSamef(t, ptr1, ptr2, "error message %s", "formatted")
//
// Both arguments must be pointer variables. Pointer variable sameness is
// determined based on the equality of both type and value.
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotSame(, , , append([]interface{}{}, ...)...)
}

// NotSubsetf asserts that the list (array, slice, or map) does NOT contain all
// elements given in the subset (array, slice, or map).
// Map elements are key-value pairs unless compared with an array or slice where
// only the map key is evaluated.
//
//	assert.NotSubsetf(t, [1, 3, 4], [1, 2], "error message %s", "formatted")
//	assert.NotSubsetf(t, {"x": 1, "y": 2}, {"z": 3}, "error message %s", "formatted")
//	assert.NotSubsetf(t, [1, 3, 4], {1: "one", 2: "two"}, "error message %s", "formatted")
//	assert.NotSubsetf(t, {"x": 1, "y": 2}, ["z"], "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotSubset(, , , append([]interface{}{}, ...)...)
}

// NotZerof asserts that i is not the zero value for its type.
func ( TestingT,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return NotZero(, , append([]interface{}{}, ...)...)
}

// Panicsf asserts that the code inside the specified PanicTestFunc panics.
//
//	assert.Panicsf(t, func(){ GoCrazy() }, "error message %s", "formatted")
func ( TestingT,  PanicTestFunc,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Panics(, , append([]interface{}{}, ...)...)
}

// PanicsWithErrorf asserts that the code inside the specified PanicTestFunc
// panics, and that the recovered panic value is an error that satisfies the
// EqualError comparison.
//
//	assert.PanicsWithErrorf(t, "crazy error", func(){ GoCrazy() }, "error message %s", "formatted")
func ( TestingT,  string,  PanicTestFunc,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return PanicsWithError(, , , append([]interface{}{}, ...)...)
}

// PanicsWithValuef asserts that the code inside the specified PanicTestFunc panics, and that
// the recovered panic value equals the expected panic value.
//
//	assert.PanicsWithValuef(t, "crazy error", func(){ GoCrazy() }, "error message %s", "formatted")
func ( TestingT,  interface{},  PanicTestFunc,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return PanicsWithValue(, , , append([]interface{}{}, ...)...)
}

// Positivef asserts that the specified element is positive
//
//	assert.Positivef(t, 1, "error message %s", "formatted")
//	assert.Positivef(t, 1.23, "error message %s", "formatted")
func ( TestingT,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Positive(, , append([]interface{}{}, ...)...)
}

// Regexpf asserts that a specified regexp matches a string.
//
//	assert.Regexpf(t, regexp.MustCompile("start"), "it's starting", "error message %s", "formatted")
//	assert.Regexpf(t, "start...$", "it's not starting", "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Regexp(, , , append([]interface{}{}, ...)...)
}

// Samef asserts that two pointers reference the same object.
//
//	assert.Samef(t, ptr1, ptr2, "error message %s", "formatted")
//
// Both arguments must be pointer variables. Pointer variable sameness is
// determined based on the equality of both type and value.
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Same(, , , append([]interface{}{}, ...)...)
}

// Subsetf asserts that the list (array, slice, or map) contains all elements
// given in the subset (array, slice, or map).
// Map elements are key-value pairs unless compared with an array or slice where
// only the map key is evaluated.
//
//	assert.Subsetf(t, [1, 2, 3], [1, 2], "error message %s", "formatted")
//	assert.Subsetf(t, {"x": 1, "y": 2}, {"x": 1}, "error message %s", "formatted")
//	assert.Subsetf(t, [1, 2, 3], {1: "one", 2: "two"}, "error message %s", "formatted")
//	assert.Subsetf(t, {"x": 1, "y": 2}, ["x"], "error message %s", "formatted")
func ( TestingT,  interface{},  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Subset(, , , append([]interface{}{}, ...)...)
}

// Truef asserts that the specified value is true.
//
//	assert.Truef(t, myBool, "error message %s", "formatted")
func ( TestingT,  bool,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return True(, , append([]interface{}{}, ...)...)
}

// WithinDurationf asserts that the two times are within duration delta of each other.
//
//	assert.WithinDurationf(t, time.Now(), time.Now(), 10*time.Second, "error message %s", "formatted")
func ( TestingT,  time.Time,  time.Time,  time.Duration,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return WithinDuration(, , , , append([]interface{}{}, ...)...)
}

// WithinRangef asserts that a time is within a time range (inclusive).
//
//	assert.WithinRangef(t, time.Now(), time.Now().Add(-time.Second), time.Now().Add(time.Second), "error message %s", "formatted")
func ( TestingT,  time.Time,  time.Time,  time.Time,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return WithinRange(, , , , append([]interface{}{}, ...)...)
}

// YAMLEqf asserts that two YAML strings are equivalent.
func ( TestingT,  string,  string,  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return YAMLEq(, , , append([]interface{}{}, ...)...)
}

// Zerof asserts that i is the zero value for its type.
func ( TestingT,  interface{},  string,  ...interface{}) bool {
	if ,  := .(tHelper);  {
		.Helper()
	}
	return Zero(, , append([]interface{}{}, ...)...)
}