Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Mattermost 的初学者。我已经完成了最重要的设置,它运行正常。请让我知道如何运行和测试像“post_test.go”这样的测试用例文件。
对于运行最重要的测试,您应该运行make test因为有一些东西需要首先运行。遗憾的是你不能运行单独的测试文件
make test
您可以更改测试文件所在的目录,然后执行以下操作:
go test -test.run="^TestCreatePost$"