package file import ( "strings" "testing" ) func TestProjectRoot(t *testing.T) { if !strings.Contains(ProjectRoot, "abrolgo") { t.Errorf("ProjectRoot is not correct: %s", ProjectRoot) } } func TestGetBasePath(t *testing.T) { basePath := GetBasePath() if !strings.Contains(basePath, "abrolgo") { t.Errorf("GetBasePath is not correct: %s", basePath) } }