SJA APS后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
455 B

package lab
import (
"fmt"
"testing"
)
// 测试TOD引擎
func TestLab(t *testing.T) {
var (
lab *LAB
ediFile string
err error
)
// 初始化
lab = &LAB{}
ediFile = "C:\\MES\\LAPP_SEAT\\Documents\\EDI_FILE\\LAB\\BMW.SY78.DELINS.2020020617313143.B0617313"
if err = ParseLabEdi(ediFile, lab); err != nil {
t.Errorf("Failed to parse due to: %v", err)
}
PrintLabEdi(lab)
fmt.Println("Total data rows = ", lab.DataRows)
return
}