goBnn/bnn_test.go

15 lines
170 B
Go
Raw Normal View History

2021-02-12 21:50:14 +00:00
package bnn
import (
"testing"
)
func TestReadBnnFile(t *testing.T) {
f, err := ReadBnnFile("./PL.BNN")
if err != nil {
t.Errorf("%s", err)
}
t.Logf("%v", f)
}