Newer
Older
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// The testing package provides support for automated testing of Go packages.
// It is intended to be used in concert with the ``gotest'' utility, which automates
// execution of any function of the form
// func TestXxx(*testing.T)
// where Xxx can by any alphanumeric string (but the first letter must not be in
// [a-z]) and serves to identify the test routine.
// These TestXxx routines should be declared within the package they are testing.
// Report as tests are run; default is silent for success.
var chatty = flag.Bool("chatty", false, "chatty")
// Insert final newline if needed and tabs after internal newlines.
n := len(s);
if n > 0 && s[n-1] != '\n' {
s += "\n";
n++;
}
for i := 0; i < n - 1; i++ { // -1 to avoid final newline
// T is a type passed to Test functions to manage test state and support formatted test logs.
// Logs are accumulated during execution and dumped to standard error when done.
// Fail marks the Test function as having failed but continues execution.
func (t *T) Fail() {
t.failed = true
}
// Failed returns whether the Test function has failed.
func (t *T) Failed() bool {
return t.failed
}
// FailNow marks the Test function as having failed and stops its execution.
// Execution will continue at the next Test.
func (t *T) FailNow() {
t.Fail();
t.ch <- t;
// Log formats its arguments using default formatting, analogous to Print(),
// and records the text in the error log.
// Log formats its arguments according to the format, analogous to Printf(),
// and records the text in the error log.
func (t *T) Logf(format string, args ...) {
t.errors += "\t" + tabify(fmt.Sprintf(format, args));
// Error is equivalent to Log() followed by Fail().
func (t *T) Error(args ...) {
t.Log(args);
t.Fail();
}
// Errorf is equivalent to Logf() followed by Fail().
func (t *T) Errorf(format string, args ...) {
t.Logf(format, args);
t.Fail();
}
// Fatal is equivalent to Log() followed by FailNow().
func (t *T) Fatal(args ...) {
t.Log(args);
t.FailNow();
}
// Fatalf is equivalent to Logf() followed by FailNow().
func (t *T) Fatalf(format string, args ...) {
t.Logf(format, args);
t.FailNow();
}
// An internal type but exported because it is cross-package; part of the implementation
// of gotest.
// An internal function but exported because it is cross-package; part of the implementation
// of gotest.
println("testing: warning: no tests to run");
if *chatty {
} else if *chatty {