dtm/dtm_test.go
2021-05-16 10:21:18 +08:00

15 lines
261 B
Go

package main
import (
"testing"
"github.com/go-playground/assert/v2"
"github.com/spf13/viper"
"github.com/yedf/dtm/common"
)
func TestCtxKey(t *testing.T) {
common.LoadConfig()
assert.Equal(t, "http://localhost:8080/api/dtm/", viper.GetString("tc"))
}