aboutsummaryrefslogtreecommitdiff
path: root/bytesconv_32_test.go
diff options
context:
space:
mode:
authorGravatar Aliaksandr Valialkin <valyala@gmail.com> 2015-11-29 13:34:49 +0200
committerGravatar Aliaksandr Valialkin <valyala@gmail.com> 2015-11-29 13:34:49 +0200
commit90e07dd7596b54068111de4a1fd831aa92af17bc (patch)
tree952ce97f2f0b59f4bf0a1af7995ca3cc5d36742e /bytesconv_32_test.go
parentAdded ability to filter out non-GET requests (diff)
downloadfasthttp-90e07dd7596b54068111de4a1fd831aa92af17bc.tar.gz
fasthttp-90e07dd7596b54068111de4a1fd831aa92af17bc.tar.bz2
fasthttp-90e07dd7596b54068111de4a1fd831aa92af17bc.zip
Improved AppendUint tests
Diffstat (limited to 'bytesconv_32_test.go')
-rw-r--r--bytesconv_32_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/bytesconv_32_test.go b/bytesconv_32_test.go
index 90223c0..4c52ebb 100644
--- a/bytesconv_32_test.go
+++ b/bytesconv_32_test.go
@@ -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) {