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)
This commit is contained in:
2026-03-26 20:56:03 +01:00
parent 0d9508e920
commit b9ec05aebc
2 changed files with 189 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
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
}