tests

package
v0.35.0 Latest Latest
Warning

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

Go to latest
Published: Sep 2, 2022 License: Apache-2.0 Imports: 1 Imported by: 3

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Restorer

type Restorer func()

Restorer holds a function that can be used to restore some previous state.

func Patch

func Patch(dest, value interface{}) Restorer

Patch sets the value pointed to by the given destination to the given value, and returns a function to restore it to its original value. The value must be assignable to the element type of the destination.

Example: Patching a global variable called `somenum` with a temporary value of 3. In tests we would type the following:

defer Patch(somenun, 3).Restore()

func (Restorer) Restore

func (r Restorer) Restore()

Restore restores some previous state.

Jump to

Keyboard shortcuts

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