15 lines
170 B
Go
15 lines
170 B
Go
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)
|
|
}
|