Documentation ¶
Index ¶
Constants ¶
View Source
const ( // CharSetAlphaNum アフファベット(小文字)+数値 CharSetAlphaNum = "abcdefghijklmnopqrstuvwxyz012346789" // CharSetAlpha アフファベット(小文字) CharSetAlpha = "abcdefghijklmnopqrstuvwxyz" // CharSetNumber 数値 CharSetNumber = "012346789" )
Variables ¶
This section is empty.
Functions ¶
func PreCheckEnvsFunc ¶
PreCheckEnvsFunc 指定の環境変数が指定されていなかった場合にテストをスキップするためのFuncを返す
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を実装として利用する
Click to show internal directories.
Click to hide internal directories.