测试学习:通过TDD学习Golang

时间:2024-03-17 00:15:36
【文件属性】:

文件名称:测试学习:通过TDD学习Golang

文件大小:9KB

文件格式:ZIP

更新时间:2024-03-17 00:15:36

refactoring golang tdd tdd-golang Go

通过TDD学习Golang 从“ 分叉出来 先决条件(当然,除了Git外) 去工具 测验 从您的CI或终端,为了在特定程序包中运行开发人员测试,请执行以下操作: go test github.com/rjar2020/learn-go-with-tests/ints 如果要获得更详细的输出,包括覆盖率,测试和示例信息,请执行以下操作: go test -v -cover github.com/rjar2020/learn-go-with-tests/iteration 基准测试 在您的配置项或终端中,要在特定程序包中执行基准测试,请使用以下命令: go test -bench=. github.com/rjar2020/learn-go-with-tests/iteration 文件 在终端上,要查看文档,请从项目的根目录执行以下步骤: godoc -http=:6060 #


【文件预览】:
learn-go-with-tests-main
----go.mod(256B)
----structs()
--------shapes_test.go(662B)
--------shapes.go(642B)
----go.sum(1KB)
----.github()
--------workflows()
----Readme.md(1KB)
----hello()
--------hello_test.go(737B)
--------hello.go(633B)
----slices()
--------findd.go(530B)
--------sum_test.go(1KB)
--------findd_test.go(2KB)
--------sum.go(477B)
----ints()
--------adder_test.go(294B)
--------adder.go(77B)
----iteration()
--------repeat.go(469B)
--------repeat_test.go(2KB)

网友评论