Skip to content
Snippets Groups Projects
Commit 8e360021 authored by Rick Waldron's avatar Rick Waldron
Browse files

harness test: decimalToHexString.js

parent 86f03a2e
No related branches found
No related tags found
No related merge requests found
// Copyright (C) 2017 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Including decimalToHexString.js will expose two functions:
decimalToHexString
decimalToPercentHexString
includes: [decimalToHexString.js]
---*/
assert.sameValue(decimalToHexString(-1), "FFFFFFFF");
assert.sameValue(decimalToHexString(0.5), "0000");
assert.sameValue(decimalToHexString(1), "0001");
assert.sameValue(decimalToHexString(100), "0064");
assert.sameValue(decimalToHexString(65535), "FFFF");
assert.sameValue(decimalToHexString(65536), "10000");
assert.sameValue(decimalToPercentHexString(-1), "%FF");
assert.sameValue(decimalToPercentHexString(0.5), "%00");
assert.sameValue(decimalToPercentHexString(1), "%01");
assert.sameValue(decimalToPercentHexString(100), "%64");
assert.sameValue(decimalToPercentHexString(65535), "%FF");
assert.sameValue(decimalToPercentHexString(65536), "%00");
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment