profile_test.go 193 B

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