# Functions
AddCleanupAction installs a function that will be called in the event of the whole test being terminated.
ExpectConsistOf expects actual contains precisely the extra elements.
ExpectEmpty expects actual is empty.
ExpectEqual expects the specified two are the same, otherwise an exception raises.
ExpectEqualValues expects the specified two are the same, it not strict about type.
ExpectError expects an error happens, otherwise an exception raises.
ExpectHaveKey expects the actual map has the key in the keyset.
ExpectNoError checks if "err" is set, and if so, fails assertion while logging the error.
ExpectNoErrorWithOffset checks if "err" is set, and if so, fails assertion while logging the error at "offset" levels above its caller (for example, for call chain f -> g -> ExpectNoErrorWithOffset(1, ...) error would be logged for "f").
ExpectNotEqual expects the specified two are not the same, otherwise an exception raises.
Failf logs the fail info, including a stack trace starts with its direct caller (for example, for call chain f -> g -> Failf("foo", ...) error would be logged for "g").
Logf logs the info.
NewRequest return a default request with default timeout and content.
RegisterCommonFlags registers flags common to all e2e test suites.
RemoveCleanupAction removes a function that was installed by AddCleanupAction.
RunCleanupActions runs all functions installed by AddCleanupAction.