我的测试与我的代码不在同一个包中。我发现用一些测试文件组织代码库的方式不那么杂乱,而且我已经读过,为了限制测试通过软件包的公共API进行交互,这是一个好主意。
所以它看起来像这样:
api_client:
Client.go
ArtistService.go
...
api_client_tests
ArtistService.Events_test.go
ArtistService.Info_test.go
UtilityFunction.go
...
我可以输入go test bandsintown-api/api_client_tests -cover
并查看0.181s coverage: 100.0% of statements
。但这实际上只是对我UtilityFunction.go
的报道(就像我说的那样go test bandsintown-api/api_client_tests -cover=cover.out
go tool cover -html=cover.out
)。
有没有办法获得正在测试的实际api_client
软件包的覆盖范围,而不是将它们全部放入同一个软件包中?
答案 0 :(得分:5)
正如评论中提到的那样,你可以运行
go test -cover -coverpkg "api_client" "api_client_tests"
以覆盖范围运行测试。
但是将代码文件从测试文件拆分到不同的目录并不是Go的方式。
我想你想要进行黑盒测试(没有任何包私有的东西可以在外面访问,即使是测试)。
为了实现这一点,允许在另一个包中进行测试(不移动文件)。例如:
api_client.go
package api_client
// will not be accessible outside of the package
var privateVar = 10
func Method() {
}
api_client_test.go
package api_client_tests
import "testing"
func TestClient(t *testing.T) {
Method()
}