Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
681299a4
Commit
681299a4
authored
Mar 05, 2009
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
document testing and incidentally gotest
R=rsc DELTA=25 (25 added, 0 deleted, 0 changed) OCL=25798 CL=25802
parent
83af3229
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
src/lib/testing.go
src/lib/testing.go
+25
-0
No files found.
src/lib/testing.go
View file @
681299a4
...
...
@@ -2,6 +2,13 @@
// 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.
package
testing
import
(
...
...
@@ -9,6 +16,7 @@ import (
"flag"
;
)
// Report as tests are run; default is silent for success.
var
chatty
=
flag
.
Bool
(
"chatty"
,
false
,
"chatty"
)
// Insert tabs after newlines - but not the last one
...
...
@@ -21,26 +29,35 @@ func tabify(s string) string {
return
s
}
// 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.
type
T
struct
{
errors
string
;
failed
bool
;
ch
chan
*
T
;
}
// Fail marks the Test function as having failed but continues execution.
func
(
t
*
T
)
Fail
()
{
t
.
failed
=
true
}
// 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
;
sys
.
Goexit
();
}
// Log formats its arguments using default formatting, analogous to Print(),
// and records the text in the error log.
func
(
t
*
T
)
Log
(
args
...
)
{
t
.
errors
+=
"
\t
"
+
tabify
(
fmt
.
Sprintln
(
args
));
}
// 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
+=
tabify
(
fmt
.
Sprintf
(
"
\t
"
+
format
,
args
));
l
:=
len
(
t
.
errors
);
...
...
@@ -49,26 +66,32 @@ func (t *T) Logf(format string, 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.
type
Test
struct
{
Name
string
;
F
func
(
*
T
);
...
...
@@ -79,6 +102,8 @@ func tRunner(t *T, test *Test) {
t
.
ch
<-
t
;
}
// An internal function but exported because it is cross-package; part of the implementation
// of gotest.
func
Main
(
tests
[]
Test
)
{
flag
.
Parse
();
ok
:=
true
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment