mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 23:20:26 +08:00
15 lines
252 B
Go
15 lines
252 B
Go
package models
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestDBNodeInitializer_loop(t *testing.T) {
|
|
initializer := NewDBNodeInitializer()
|
|
err := initializer.loop()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log(len(accessLogDBMapping), len(httpAccessLogDAOMapping))
|
|
}
|