Movatterモバイル変換


[0]ホーム

URL:


testing

packagemodule
v1.14.1Latest Latest
Warning

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

Go to latest
Published: Apr 23, 2020 License:MITImports:2Imported by:923

Details

Repository

github.com/mitchellh/go-testing-interface

Links

README

go-testing-interface

go-testing-interface is a Go library that exports an interface that*testing.T implements as well as a runtime version you can use in itsplace.

The purpose of this library is so that you can export test helpers as apublic API without depending on the "testing" package, since you can'tcreate a*testing.T struct manually. This lets you, for example, use thepublic testing APIs to generate mock data at runtime, rather than just attest time.

Usage & Example

For usage and examples see theGodoc.

Given a test helper written usinggo-testing-interface like this:

import "github.com/mitchellh/go-testing-interface"func TestHelper(t testing.T) {    t.Fatal("I failed")}

You can call the test helper in a real test easily:

import "testing"func TestThing(t *testing.T) {    TestHelper(t)}

You can also call the test helper at runtime if needed:

import "github.com/mitchellh/go-testing-interface"func main() {    TestHelper(&testing.RuntimeT{})}

Versioning

The tagged version matches the version of Go that the interface iscompatible with. For example, the version "1.14.0" is for Go 1.14 andintroduced theCleanup function. The patch version (the ".0" in theprior example) is used to fix any bugs found in this library and has nocorrelation to the supported Go version.

Why?!

*Why would I call a test helper that takes atesting.T at runtime?

You probably shouldn't. The only use case I've seen (and I've had) for thisis to implement a "dev mode" for a service where the test helpers are usedto populate mock data, create a mock DB, perhaps run service dependenciesin-memory, etc.

Outside of a "dev mode", I've never seen a use case for this and I thinkthere shouldn't be one since the point of thetesting.T interface is thatyou can fail immediately.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

typeRuntimeT

type RuntimeT struct {// contains filtered or unexported fields}

RuntimeT implements T and can be instantiated and run at runtime tomimic *testing.T behavior. Unlike *testing.T, this will simply panicfor calls to Fatal. For calls to Error, you'll have to check the errorslist to determine whether to exit yourself.

Cleanup does NOT work, so if you're using a helper that uses Cleanup,there may be dangling resources.

Parallel does not do anything.

func (*RuntimeT)Cleanupadded inv1.14.0

func (t *RuntimeT) Cleanup(func())

func (*RuntimeT)Error

func (t *RuntimeT) Error(args ...interface{})

func (*RuntimeT)Errorf

func (t *RuntimeT) Errorf(formatstring, args ...interface{})

func (*RuntimeT)Fail

func (t *RuntimeT) Fail()

func (*RuntimeT)FailNow

func (t *RuntimeT) FailNow()

func (*RuntimeT)Failed

func (t *RuntimeT) Failed()bool

func (*RuntimeT)Fatal

func (t *RuntimeT) Fatal(args ...interface{})

func (*RuntimeT)Fatalf

func (t *RuntimeT) Fatalf(formatstring, args ...interface{})

func (*RuntimeT)Helper

func (t *RuntimeT) Helper()

func (*RuntimeT)Log

func (t *RuntimeT) Log(args ...interface{})

func (*RuntimeT)Logf

func (t *RuntimeT) Logf(formatstring, args ...interface{})

func (*RuntimeT)Name

func (t *RuntimeT) Name()string

func (*RuntimeT)Paralleladded inv1.0.4

func (t *RuntimeT) Parallel()

func (*RuntimeT)Skip

func (t *RuntimeT) Skip(args ...interface{})

func (*RuntimeT)SkipNow

func (t *RuntimeT) SkipNow()

func (*RuntimeT)Skipf

func (t *RuntimeT) Skipf(formatstring, args ...interface{})

func (*RuntimeT)Skipped

func (t *RuntimeT) Skipped()bool

typeT

type T interface {Cleanup(func())Error(args ...interface{})Errorf(formatstring, args ...interface{})Fail()FailNow()Failed()boolFatal(args ...interface{})Fatalf(formatstring, args ...interface{})Helper()Log(args ...interface{})Logf(formatstring, args ...interface{})Name()stringParallel()Skip(args ...interface{})SkipNow()Skipf(formatstring, args ...interface{})Skipped()bool}

T is the interface that mimics the standard library *testing.T.

In unit tests you can just pass a *testing.T struct. At runtime, outsideof tests, you can pass in a RuntimeT struct from this package.

Source Files

View all Source files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f orF : Jump to
y orY : Canonical URL
go.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic.Learn more.

[8]ページ先頭

©2009-2025 Movatter.jp