profile_test.go 201 B

123456789101112
  1. package mhayaProfile
  2. import (
  3. "fmt"
  4. "testing"
  5. )
  6. func TestLoadFile(t *testing.T) {
  7. path := "../../database/config/profile-dev.json"
  8. node, err := Init(path, "database-1")
  9. fmt.Println(node, err)
  10. }