commandUpdated notifies the follower of the command which has been updated
(command schema.Command)
| 36 | |
| 37 | // commandUpdated notifies the follower of the command which has been updated |
| 38 | func (testDevFile *TestDevfile) commandUpdated(command schema.Command) { |
| 39 | LogInfoMessage(fmt.Sprintf("command updated Id: %s", command.Id)) |
| 40 | if testDevFile.Follower != nil { |
| 41 | testDevFile.Follower.UpdateCommand(command) |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | // addEnv creates and returns a specifed number of env attributes in a schema structure |
| 46 | func addEnv(numEnv int) []schema.EnvVar { |
no test coverage detected