CreateAndTargetOrg creates a randomly-named org and targets it.
()
| 27 | |
| 28 | // CreateAndTargetOrg creates a randomly-named org and targets it. |
| 29 | func CreateAndTargetOrg() string { |
| 30 | org := NewOrgName() |
| 31 | CreateOrg(org) |
| 32 | TargetOrg(org) |
| 33 | return org |
| 34 | } |
| 35 | |
| 36 | // CreateOrgAndSpace creates an org and a space in that org with specified names. |
| 37 | func CreateOrgAndSpace(org string, space string) { |
no test coverage detected