gitlab.com/Raven-IO/raven-delve@v1.22.4/_fixtures/buildtest/main_test.go (about)

     1  package main
     2  
     3  import (
     4  	"os"
     5  	"testing"
     6  )
     7  
     8  func TestMain(m *testing.M) {
     9  	os.Exit(m.Run())
    10  }
    11  
    12  func TestCurrentDirectory(t *testing.T) {
    13  	wd, _ := os.Getwd()
    14  	t.Logf("current directory: %s", wd)
    15  }