testingx

package
v1.19.0-beta2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 19, 2025 License: BSD-2-Clause Imports: 1 Imported by: 0

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

func Must[T any](t *testing.T) func(v T, err error) T

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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL