Documentation
¶
Overview ¶
Package testingx provides helpers for use with the testing package.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Must ¶
Must provides a concise way to handle returned error in cases that "should never happen"©.
This function can be used in test case setup that can be presumed to be correct, but technically may return an error. This function MUST NOT be used to check for test case conditions themselves because it generates a generic, nondescript test error message.
func startServer(addr string) (*server, err) mustServer := testingx.Must[*server](t) mustServer(startServer(":8080"))
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.