(model Model, cfg config.ConfigInterface, sec string)
| 118 | } |
| 119 | |
| 120 | func loadSection(model Model, cfg config.ConfigInterface, sec string) { |
| 121 | i := 1 |
| 122 | for { |
| 123 | if !loadAssertion(model, cfg, sec, sec+getKeySuffix(i)) { |
| 124 | break |
| 125 | } else { |
| 126 | i++ |
| 127 | } |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | // NewModel creates an empty model. |
| 132 | func NewModel() Model { |
no test coverage detected
searching dependent graphs…