package env import "testing" func TestGetShellName(t *testing.T) { tests := []struct { name string want string }{ { name: "", want: "", }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { if got := GetShellName(); got != tt.want { t.Errorf("GetShellName() = %v, want %v", got, tt.want) } }) } }