(property properties.ConfigurableProperty)
| 41 | } |
| 42 | |
| 43 | func getStringProperty(property properties.ConfigurableProperty) string { |
| 44 | uncastedValue := getPropertyOrDefault(property) |
| 45 | value, ok := uncastedValue.(string) |
| 46 | if !ok { |
| 47 | panic(fmt.Sprintf(unknownError, property.Name, uncastedValue)) |
| 48 | } |
| 49 | return value |
| 50 | } |
| 51 | |
| 52 | func getUint64Property(property properties.ConfigurableProperty) uint64 { |
| 53 | uncastedValue := getPropertyOrDefault(property) |
no test coverage detected