IntelliJ 没有看到我的 golang 测试包

发布于 2025-01-11 18:39:00 字数 948 浏览 0 评论 0原文

我有这样的目录结构。

/home/senthil/greeting]$ tree
.
|-- hello.go
`-- hello_test.go

Hello.go

package greeting

// Hello returns "Hello World - <name>"
func Hello(name string) string {
    return "Hello World - " + name
}

和 hello_test.go

package greeting

import (
    "testing"
)

func TestHello(t *testing.T) {
    hello := Hello("Hello")
    expected := "Hello"
    if hello != expected {
        t.Errorf("Expected %s, got %s", expected, hello)
    }
}

  1. 我可以使用 go test -v

    运行测试
  2. 但我无法直接从 IntelliJ 运行测试。

我缺少什么?

输入图片此处描述

在此处输入图像描述

I have a directory structure like this.

/home/senthil/greeting]$ tree
.
|-- hello.go
`-- hello_test.go

Hello.go

package greeting

// Hello returns "Hello World - <name>"
func Hello(name string) string {
    return "Hello World - " + name
}

And hello_test.go

package greeting

import (
    "testing"
)

func TestHello(t *testing.T) {
    hello := Hello("Hello")
    expected := "Hello"
    if hello != expected {
        t.Errorf("Expected %s, got %s", expected, hello)
    }
}

  1. I can run the tests with go test -v

  2. But I cannot run the tests directly from my IntelliJ.

What am I missing?

enter image description here

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青春如此纠结 2025-01-18 18:39:00

好吧,我缺少一个 go.mod 文件。我必须添加一个名为 go.mod 的文件

及其内容。


module greeting

go 1.16

现在,我可以通过 IntelliJ 进行测试。

Okay, I was missing a go.mod file. I had to add a file called go.mod

with the contents.


module greeting

go 1.16

Now, I can exercise the tests from IntelliJ.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文