dave-wind / blog

native javascript blog
0 stars 0 forks source link

go- test 测试 2023-12月 #27

Open dave-wind opened 8 months ago

dave-wind commented 8 months ago

Test

目录结构

├── cmd
│   └── main.go
├── go.mod
├── utils.go
└── test
└── utils_test.go

注意事项

1.main.go 不能与 *_test.go 文件同级
2.要去指定目录 比如 test文件夹下 执行 全执行test : go test
3.指定文件执行测试: go test -v <path/to/your/test_file>_test.go
eg:
go test -v ./test/utils_test.go