Search code examples
go

Listing of pass and failed test cases in Go


In go language , is it possible to show both the pass testcase and failed testcase in the console.

Suppose , I have a file test.go , which has 4 testcases , out of which 2 have passed and 2 have failed.

When we use t.Errorf(), function and then command "go test", then only the failed testcases with description is displayed.

So , Is there a way to show number of testcases passed and failed?


Solution

  • go test -v
    

    Use go test help for a list of available flags.

    https://pkg.go.dev/cmd/go#hdr-Testing_flags