This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAPI/internal/db/models/db_node_initializer_test.go
T

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))
}