(test Test)
| 69 | } |
| 70 | |
| 71 | func UpdateTest(test Test) { |
| 72 | for i := 0; i < len(Mset.Tests); i++ { |
| 73 | if Mset.Tests[i].ID == test.ID { |
| 74 | Mset.Tests[i] = test |
| 75 | } |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | func Path(module, id, name string) string { |
| 80 | pathoffolder := filepath.Join(cleoWorkspace, module, id) |