Sign in
◑
Theme
go
/
vscode-go
/
c31bc21e0034c5a8b14ca964970c2de2cfd1d69b
/
.
/
test
/
testdata
/
baseTest
/
sample_test.go
blob: 918549abaf8eb791121d90c9aab2b885d3268631 [
file
]
package main
import (
"fmt"
"os"
"testing"
)
func hello() {
fmt.Println("Hello")
}
// TestMe
func TestMe(t *testing.T) {
if os.Getenv("dummyEnvVar") != "dummyEnvValue" {
t.Errorf("Oops! Value for the variable is %q", os.Getenv("dummyEnvVar"))
}
}