starterProjectUpdated notifies the follower of the starter project which has been updated
(starterProject schema.StarterProject)
| 50 | |
| 51 | // starterProjectUpdated notifies the follower of the starter project which has been updated |
| 52 | func (testDevfile *TestDevfile) starterProjectUpdated(starterProject schema.StarterProject) { |
| 53 | LogInfoMessage(fmt.Sprintf("starter project updated Name: %s", starterProject.Name)) |
| 54 | testDevfile.replaceSchemaStarterProject(starterProject) |
| 55 | if testDevfile.Follower != nil { |
| 56 | testDevfile.Follower.UpdateStarterProject(starterProject) |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | // replaceSchemaProject replaces a Project in the saved devfile schema structure |
| 61 | func (testDevfile *TestDevfile) replaceSchemaProject(project schema.Project) { |
no test coverage detected