awesome-patterns/playground/parse/parseInt_test.go
Bruce 874d7b4987
Practice sync map and xml
Signed-off-by: Bruce <weichou1229@gmail.com>
2019-03-01 22:27:43 +08:00

15 lines
175 B
Go

package parse
import (
"fmt"
"strconv"
"testing"
)
func TestParseInt(t *testing.T) {
var _, err = strconv.ParseInt("127", 0, 8)
if err != nil {
fmt.Println(err)
}
}