Files
yoloyolo/config/config.go
T
gurix b9ec05aebc test(06-01): add failing tests for config package TOML load, merge, validate
- 9 table-driven tests covering CFG-01 through CFG-05
- TestLoadPartialOverrideFrequency, TestLoadPartialOverrideWaveform, TestLoadBothOverrides
- TestLoadUnknownKey, TestLoadNoConfig, TestLoadExplicitMissing
- TestLoadUnknownClass, TestLoadInvalidWaveform, TestLoadAllDefaultsPresent
- Stub config.Load returns nil,nil — all tests fail (RED)
2026-03-26 20:56:03 +01:00

10 lines
268 B
Go

package config
import "github.com/netsynth/netsynth/classify"
import "github.com/netsynth/netsynth/synth"
// Load is a stub — implementation pending GREEN phase.
func Load(configPath string) (map[classify.TrafficClass]synth.FreqConfig, error) {
return nil, nil
}