diff options
Diffstat (limited to 'content/subtests.article')
-rw-r--r-- | content/subtests.article | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/subtests.article b/content/subtests.article index 54b3eb7..ec3dffe 100644 --- a/content/subtests.article +++ b/content/subtests.article @@ -1,7 +1,7 @@ # Using Subtests and Sub-benchmarks 3 Oct 2016 Tags: testing, hierarchy, table-driven, subtests, sub-benchmarks -Summary: In Go 1.7, the `testing` package introduces a Run method on the [`T`](https://golang.org/pkg/testing/#T.Run) and [`B`](https://golang.org/pkg/testing/#B.Run) types that allows for the creation of subtests and sub-benchmarks. The introduction of subtests and sub-benchmarks enables better handling of failures, fine-grained control of which tests to run from the command line, control of parallelism, and often results in simpler and more maintainable code. +Summary: How to use Go 1.7's new subtests and sub-benchmarks. Marcel van Lohuizen |