componetUpdated updates a component in the parser data
(component schema.Component)
| 34 | |
| 35 | // componetUpdated updates a component in the parser data |
| 36 | func (devfile *TestDevfile) componentUpdated(component schema.Component) { |
| 37 | LogInfoMessage(fmt.Sprintf("component updated Name: %s", component.Name)) |
| 38 | if devfile.Follower != nil { |
| 39 | devfile.Follower.UpdateComponent(component) |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | // addVolume returns volumeMounts in a schema structure based on a specified number of volumes |
| 44 | func (devfile *TestDevfile) addVolume(numVols int) []schema.VolumeMount { |
no test coverage detected