replace zxq.co/ripple/hanayo
This commit is contained in:
32
vendor/github.com/boombuler/barcode/codabar/encoder_test.go
generated
vendored
Normal file
32
vendor/github.com/boombuler/barcode/codabar/encoder_test.go
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
package codabar
|
||||
|
||||
import (
|
||||
"image/color"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func Test_Encode(t *testing.T) {
|
||||
_, err := Encode("FOOBAR")
|
||||
if err == nil {
|
||||
t.Error("\"FOOBAR\" should not be encodable")
|
||||
}
|
||||
|
||||
testEncode := func(txt, testResult string) {
|
||||
code, err := Encode(txt)
|
||||
if err != nil || code == nil {
|
||||
t.Fail()
|
||||
} else {
|
||||
if code.Bounds().Max.X != len(testResult) {
|
||||
t.Errorf("%v: length missmatch", txt)
|
||||
} else {
|
||||
for i, r := range testResult {
|
||||
if (code.At(i, 0) == color.Black) != (r == '1') {
|
||||
t.Errorf("%v: code missmatch on position %d", txt, i)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
testEncode("A40156B", "10110010010101101001010101001101010110010110101001010010101101010010011")
|
||||
}
|
Reference in New Issue
Block a user