File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
// license that can be found in the LICENSE file.
4
4
5
5
// Package testing provides support for automated testing of Go packages.
6
- // It is intended to be used in concert with the `` go test'' command, which automates
6
+ // It is intended to be used in concert with the " go test" command, which automates
7
7
// execution of any function of the form
8
8
// func TestXxx(*testing.T)
9
9
// where Xxx does not start with a lowercase letter. The function name
14
14
// To write a new test suite, create a file whose name ends _test.go that
15
15
// contains the TestXxx functions as described here. Put the file in the same
16
16
// package as the one being tested. The file will be excluded from regular
17
- // package builds but will be included when the `` go test'' command is run.
18
- // For more detail, run `` go help test'' and `` go help testflag'' .
17
+ // package builds but will be included when the " go test" command is run.
18
+ // For more detail, run " go help test" and " go help testflag" .
19
19
//
20
20
// A simple test function looks like this:
21
21
//
You can’t perform that action at this time.
0 commit comments