123456789101112131415161718192021222324252627282930 |
- package eliza
- import (
- "encoding/json"
- "io/ioutil"
- "os"
- "testing"
- )
- func TestParsePersonality(t *testing.T) {
- t.Log("Reading Personality test\n")
- jsonFile, err := os.Open("../bots/eliza.json")
-
- if err != nil {
- t.Errorf(err.Error())
- }
- t.Log("Successfully Opened eliza.json")
- byteValue, _ := ioutil.ReadAll(jsonFile)
-
- var personality Personality
-
-
- json.Unmarshal(byteValue, &personality)
- t.Log("Successfully Parsed eliza.json - name field is "+personality.Name)
-
- defer jsonFile.Close()
- }
|