projectUpdated notifies the follower of the project which has been updated
(project schema.Project)
| 32 | |
| 33 | // projectUpdated notifies the follower of the project which has been updated |
| 34 | func (testDevfile *TestDevfile) projectUpdated(project schema.Project) { |
| 35 | LogInfoMessage(fmt.Sprintf("project updated Name: %s", project.Name)) |
| 36 | testDevfile.replaceSchemaProject(project) |
| 37 | if testDevfile.Follower != nil { |
| 38 | testDevfile.Follower.UpdateProject(project) |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | // starterProjectAdded adds a new starter project to the test schema data and notifies the follower |
| 43 | func (testDevfile *TestDevfile) starterProjectAdded(starterProject schema.StarterProject) { |
no test coverage detected