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.
package testing
)
var chatty bool;
func init() {
flag.Bool("chatty", false, &chatty, "chatty");
}
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
export type T struct {
errors string;
failed bool;
ch *chan *T;
}
func (t *T) Fail() {
t.failed = true
}
func (t *T) FailNow() {
t.Fail();
t.ch <- t;
sys.goexit();
}
func (t *T) Log(args ...) {
t.errors += "\t" + fmt.sprintln(args);
}
func (t *T) Logf(format string, args ...) {
t.errors += fmt.sprintf("\t" + format, args);
l := len(t.errors);
if l > 0 && t.errors[l-1] != '\n' {
t.errors += "\n"
}
}
func (t *T) Error(args ...) {
t.Log(args);
t.Fail();
}
func (t *T) Errorf(format string, args ...) {
t.Logf(format, args);
t.Fail();
}
func (t *T) Fatal(args ...) {
t.Log(args);
t.FailNow();
}
func (t *T) Fatalf(format string, args ...) {
t.Logf(format, args);
t.FailNow();
}
f *(*T);
}
func TRunner(t *T, test *Test) {
test.f(t);
t.ch <- t;
}
export func Main(tests *[]Test) {
ok := true;
if len(tests) == 0 {
println("gotest: warning: no tests to run");
}
if chatty {
println("=== RUN ", tests[i].name);
}
t := new(T);
t.ch = new(chan *T);
go TRunner(t, &tests[i]);
<-t.ch;
if t.failed {
println("--- FAIL:", tests[i].name);
print(t.errors);
println("--- PASS:", tests[i].name);
print(t.errors);