SetupCFWithOrgOnly logs into the CLI with LoginCF, creates the given org, and targets it.
(org string)
| 162 | |
| 163 | // SetupCFWithOrgOnly logs into the CLI with LoginCF, creates the given org, and targets it. |
| 164 | func SetupCFWithOrgOnly(org string) { |
| 165 | LoginCF() |
| 166 | CreateOrg(org) |
| 167 | TargetOrg(org) |
| 168 | } |
| 169 | |
| 170 | // SetupCFWithGeneratedOrgAndSpaceNames logs into the CLI with LoginCF, creates the org and |
| 171 | // space with generated names, and targets that org and space. Returns the generated org so |
no test coverage detected