validators/cnpj/lib_test.go

21 lines
258 B
Go
Raw Normal View History

2021-09-30 01:04:43 +00:00
package cnpj
import (
"log"
"testing"
)
func TestFormat(t *testing.T) {
log.Printf(Format("03794020685"))
}
func TestCheck(t *testing.T) {
for _, v := range []string{
"60.119.200/0001-90",
} {
ret := Check(v)
log.Printf("%s=>%v", v, ret)
}
}