testutil

package
v0.0.10 Latest Latest
Warning

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

Go to latest
Published: Dec 8, 2023 License: Apache-2.0 Imports: 3 Imported by: 1

Documentation

Index

Constants

View Source
const (
	// CharSetAlphaNum アフファベット(小文字)+数値
	CharSetAlphaNum = "abcdefghijklmnopqrstuvwxyz012346789"

	// CharSetAlpha アフファベット(小文字)
	CharSetAlpha = "abcdefghijklmnopqrstuvwxyz"

	// CharSetNumber 数値
	CharSetNumber = "012346789"
)

Variables

This section is empty.

Functions

func IsAccTest

func IsAccTest() bool

IsAccTest TESTACC環境変数が指定されているか

func PreCheckEnvsFunc

func PreCheckEnvsFunc(envs ...string) func(TestT)

PreCheckEnvsFunc 指定の環境変数が指定されていなかった場合にテストをスキップするためのFuncを返す

func Random

func Random(strlen int, charSet string) string

Random ランダムな文字列を生成して返す

func RandomName

func RandomName(prefix string, strlen int, charSet string) string

RandomName ランダムな文字列を生成して返す

Types

type TestT

type TestT interface {
	Log(args ...interface{})
	Logf(format string, args ...interface{})
	Error(args ...interface{})
	Errorf(format string, args ...interface{})
	FailNow()
	Fatal(args ...interface{})
	Skip(args ...interface{})
	Skipf(format string, args ...interface{})
	Name() string
	Parallel()
}

TestT テストのライフサイクルを管理するためのインターフェース.

通常は*testing.Tを実装として利用する

Jump to

Keyboard shortcuts

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