11 lines
155 B
Go
11 lines
155 B
Go
package brain
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestNewBehaviors(t *testing.T) {
|
|
behaviors, err := NewBehaviors("hello")
|
|
fmt.Println(behaviors, err)
|
|
}
|