parent
4c02a0bce0
commit
5d66434e11
@ -0,0 +1,26 @@
|
|||||||
|
package config
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sendmsg/global"
|
||||||
|
"sendmsg/model"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestConfig(t *testing.T) {
|
||||||
|
global.GLO_CONF_CH = make(chan model.Config)
|
||||||
|
config, err := InitConfig()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Failed to initialize config: %v", err)
|
||||||
|
}
|
||||||
|
t.Log(config)
|
||||||
|
|
||||||
|
var count int
|
||||||
|
for {
|
||||||
|
if count > 5 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
config = <-global.GLO_CONF_CH
|
||||||
|
count++
|
||||||
|
t.Log(config)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue