Add Dysfunctional Test
This commit is contained in:
parent
06d9302d96
commit
edbd540c68
@ -64,6 +64,7 @@ import "./tests/operations/SetUnion";
|
||||
import "./tests/operations/SymmetricDifference";
|
||||
import "./tests/operations/TranslateDateTimeFormat";
|
||||
import "./tests/operations/Magic";
|
||||
import "./tests/operations/LengthValueDecoder";
|
||||
|
||||
let allTestsPassing = true;
|
||||
const testStatusCounts = {
|
||||
|
23
test/tests/operations/LengthValueDecoder.mjs
Normal file
23
test/tests/operations/LengthValueDecoder.mjs
Normal file
@ -0,0 +1,23 @@
|
||||
/**
|
||||
* Length Value Decoder tests.
|
||||
*
|
||||
* @author gchq77703 []
|
||||
* @copyright Crown Copyright 2018
|
||||
* @license Apache-2.0
|
||||
*/
|
||||
|
||||
import TestRegister from "../../TestRegister";
|
||||
|
||||
TestRegister.addTests([
|
||||
{
|
||||
name: "KeyValue",
|
||||
input: [5,72,111,117,115,101,4,114,111,111,109,4,100,111,111,114],
|
||||
expectedOutput: [{"key":[25],"length":5,"value":[72,111,117,115,101]},{"key":[73],"length":4,"value":[114,111,111,109]},{"key":[41],"length":4,"value":[100,111,111,114]}],
|
||||
recipeConfig: [
|
||||
{
|
||||
"op": "Length Value Decoder",
|
||||
"args": ["0 Bytes (No Key)", "1 Byte", false]
|
||||
}
|
||||
]
|
||||
},
|
||||
])
|
Loading…
Reference in New Issue
Block a user