Goland no tests were run

在GoLand中,由于`AddTwoNumbers`方法的输出缺少新行,导致测试执行的输出格式不正确,使得测试运行器无法识别。解决方案是在测试用例中添加`fmt.Println()`以确保每个测试在新行上,保持输出清晰。

Goland no tests were run

引用

原因

Instead of `fmt.Printf(...` in `AddTwoNumbers` try either `fmt.Println(...` or `fmt.Printf("foo\n')`

The absence of the newline in the output of your `AddTwoNumbers` method is is causing the format of the test execution outputs to not have each test in a new line. The test runner is not being able to interpret that a test was run. Adding that newline, keeps a clean output.

处理方案

func TestMakeSlice(t *testing.T) {  
	// user test
	
    // add println to avoid "goland No Tests Were Run"
    fmt.Println("")
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值