(t *testing.T)
| 26 | } |
| 27 | |
| 28 | func TestUpdateApp(t *testing.T) { |
| 29 | cmd := test.GetRootCmdWithSubCommands(NewCmds()...) |
| 30 | cmd.SetArgs([]string{"update-app", "--properties", "{\"multi_tenant_enabled\":true}"}) |
| 31 | _, err := cmd.ExecuteC() |
| 32 | require.NoError(t, err) |
| 33 | } |
| 34 | |
| 35 | func TestRevokeAlTokens(t *testing.T) { |
| 36 | cmd := test.GetRootCmdWithSubCommands(NewCmds()...) |
nothing calls this directly
no test coverage detected