github.com/vpayno/adventofcode-2022-golang-workspace@v0.0.0-20230605190011-dbafed5593de/empty_test.go (about)

     1  package clis
     2  
     3  import "testing"
     4  
     5  func TestRoot(t *testing.T) {
     6  	/*
     7  	  This is an empty test in the root package.
     8  	  Without it `go test -v .` prints "testing: warning: no tests to run".
     9  	  Or you get `?       github.com/org_name/repo_name  [no test files]` when with `./...`.
    10  	*/
    11  }