(t *testing.T, cmd *cobra.Command)
| 187 | } |
| 188 | |
| 189 | func setAccountOutputJSON(t *testing.T, cmd *cobra.Command) { |
| 190 | t.Helper() |
| 191 | if err := cmd.Flags().Set(outputFlag, "json"); err != nil { |
| 192 | t.Fatalf("set output: %v", err) |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | func setCurrentAuthContextForTest(t *testing.T, ctx *authContext) { |
| 197 | t.Helper() |
no outgoing calls
no test coverage detected