Improved AppendUint tests

This commit is contained in:
Aliaksandr Valialkin
2015-11-29 13:34:49 +02:00
parent 4cf82252e3
commit 90e07dd759
2 changed files with 8 additions and 0 deletions
+4
View File
@@ -17,6 +17,10 @@ func TestAppendUint(t *testing.T) {
testAppendUint(t, 0)
testAppendUint(t, 123)
testAppendUint(t, 0x7fffffff)
for i := 0; i < 2345; i++ {
testAppendUint(t, i)
}
}
func TestReadHexIntSuccess(t *testing.T) {
+4
View File
@@ -17,6 +17,10 @@ func TestAppendUint(t *testing.T) {
testAppendUint(t, 0)
testAppendUint(t, 123)
testAppendUint(t, 0x7fffffffffffffff)
for i := 0; i < 2345; i++ {
testAppendUint(t, i)
}
}
func TestReadHexIntSuccess(t *testing.T) {