首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何使用go test -run运行特定的golang测试

如何使用go test -run运行特定的golang测试
EN

Stack Overflow用户
提问于 2018-01-27 00:05:51
回答 1查看 13.7K关注 0票数 17

我在这里做错了什么?我只想运行这个ConnectionPoolTest.TestNew,不管我怎么尝试,结果都是“没有测试可运行”。

代码语言:javascript
复制
:go test  --check.list *.go |grep Connectio
ConnectionPoolTest.TestNew
:go test  --run ConnectionPoolTest *.go
ok      command-line-arguments  0.005s [no tests to run]
:go test  --run ConnectionPoolTest.TestNew *.go
ok      command-line-arguments  0.005s [no tests to run]
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2018-01-27 00:25:10

如果你想运行一个特定的测试,你可以像下面这样运行

代码语言:javascript
复制
package main

import (
    "testing"
    "github.com/stretchr/testify/assert"
)

func TestA(t *testing.T) {
    assert.True(t, true)
}

func TestB(t *testing.T) {
    assert.True(t, false)
}

运行测试:

代码语言:javascript
复制
$ go test -run B
--- FAIL: TestB (0.00s)
        Error Trace:    a_test.go:13
        Error:          Should be true
FAIL
exit status 1
FAIL    test    0.004s
$ go test -run A
PASS
ok      test    0.003s
shahriar@Kite ~/g/s/test> 

-run标志

代码语言:javascript
复制
-run regexp
        Run only those tests and examples matching the regular expression.
        For tests the regular expression is split into smaller ones by
        top-level '/', where each must match the corresponding part of a
        test's identifier.
票数 24
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/48465080

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档