@Test
public void testTransCode_String_DvorcodeCodec_decode_shiftedKeys() {
System.out.println("transcode - decoding (shifted keys)");
String cypher = QWERTY_UPPER_keys;
Codec direction = Codec.DECODE;
String expResult = Dvorak_UPPER_keys;
String result = Dvorcode.transcode(cypher, direction);
assertEquals(expResult, result);
}