mirror of https://github.com/lukechilds/node.git
Browse Source
PR-URL: https://github.com/nodejs/node/pull/10791 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>v7.x
larissayvette
8 years ago
committed by
Italo A. Casas
2 changed files with 0 additions and 48 deletions
@ -1,24 +0,0 @@ |
|||
'use strict'; |
|||
require('../common'); |
|||
const assert = require('assert'); |
|||
|
|||
// testing basic functionality of readUIntBE()
|
|||
|
|||
const buf = Buffer.from([42, 84, 168, 127]); |
|||
const result = buf.readUIntBE(2); |
|||
|
|||
assert.strictEqual(result, 84); |
|||
|
|||
assert.throws( |
|||
() => { |
|||
buf.readUIntBE(5); |
|||
}, |
|||
/Index out of range/ |
|||
); |
|||
|
|||
assert.doesNotThrow( |
|||
() => { |
|||
buf.readUIntBE(5, 0, true); |
|||
}, |
|||
'readUIntBE() should not throw if noAssert is true' |
|||
); |
@ -1,24 +0,0 @@ |
|||
'use strict'; |
|||
require('../common'); |
|||
const assert = require('assert'); |
|||
|
|||
// testing basic functionality of readUIntLE()
|
|||
|
|||
const buf = Buffer.from([42, 84, 168, 127]); |
|||
const result = buf.readUIntLE(2); |
|||
|
|||
assert.strictEqual(result, 168); |
|||
|
|||
assert.throws( |
|||
() => { |
|||
buf.readUIntLE(5); |
|||
}, |
|||
/Index out of range/ |
|||
); |
|||
|
|||
assert.doesNotThrow( |
|||
() => { |
|||
buf.readUIntLE(5, 0, true); |
|||
}, |
|||
'readUIntLE() should not throw if noAssert is true' |
|||
); |
Loading…
Reference in new issue