Skip to content

Commit

Permalink
test: basic functionality of readUIntLE()
Browse files Browse the repository at this point in the history
  • Loading branch information
larissayvette committed Dec 23, 2016
1 parent 8329605 commit 258cc0e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions test/parallel/test-buffer-readuintle.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
'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'
);

0 comments on commit 258cc0e

Please sign in to comment.