# Functions
IgnoringCase sets underlying value to lower case.
IgnoringNewLines removes the new lines from the value under assertion.
IgnoringWhiteSpaces removes the whitespaces from the value under assertion.
NewFluentT creates a new Fluent testing.
That returns an AssertableAny structure initialized with the test reference and the actual value to assert.
ThatBool returns an AssertableBool structure initialized with the test reference and the actual bool value to assert.
ThatDuration returns an AssertableDuration structure initialized with the test reference and the actual value to assert.
ThatError returns an AssertableError structure initialized with the test reference and the actual value to assert.
ThatInt returns an AssertableInt structure initialized with the test reference and the actual value to assert.
ThatMap returns a proper assertable structure based on the map key type.
ThatSlice returns a proper assertable structure based on the slice type.
ThatString returns an AssertableString structure initialized with the test reference and the actual value to assert.
ThatStruct returns a proper assertable structure based on the slice type.
ThatTime returns an AssertableTime structure initialized with the test reference and the actual value to assert.
WithCustomMessage provides a custom message to be added before the assertion error message.
# Structs
AssertableAny is the assertable structure for interface{} values.
AssertableBool is the assertable structure for bool values.
AssertableDuration is the assertable structure for time.Duration values.
AssertableError is the assertable structure for error values.
AssertableInt is the assertable structure for int values.
AssertableMap is the structure to assert maps.
AssertableSlice is the implementation of AssertableSlice for string slices.
AssertableString is the implementation of CommonAssertable for string types.
AssertableStruct is the implementation of AssertableAny for structs.
AssertableTime is the assertable structure for time.Time values.
FluentT wraps the testing.T pointer to provide a better experience to the library users.