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