Hyper-optimized Telemetry: Two unit tests are not following specifications in instructions for encoding
- 主要言語
- C#
- スター
- 427
- フォーク
- 383
- 平均マージ
- 2日 2時間
- マージ済み PR(30日)
- 5
説明
On the Hyper-optimized Telemetry exercise, the instructions specify a table of ranges and target types for determining which type should be used when converting a long to the smallest integral type. Of particular interest in this issue is the range 0 - 65535 which should be represented with a `ushort`:

However, two unit tests are not following this specification. First one is `ToBuffer_upper_short`:

Since the supplied value 32767 is between 0 and 65353, this should be an unsigned short. Specifically `0x2, 0xff, 0x7f`.
The second unit tests not following the instructions is `ToBuffer_Zero`. It has the exact same problem, expecting 0 to be a signed short, while the instructions specify that it should be unsigned.

コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
評価
この issue はまだ評価されていません。