We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efe39cc commit 0196f1eCopy full SHA for 0196f1e
communication/src/test/java/datadog/communication/serialization/IntPackingTest.java
@@ -92,7 +92,7 @@ private static long[] random(int size) {
92
return random;
93
}
94
95
- @ParameterizedTest
+ @ParameterizedTest(name = "Input case {index}")
96
@MethodSource("inputs")
97
public void packLongs(long[] input) {
98
ByteBuffer buffer = ByteBuffer.allocate(input.length * 9 + 10);
@@ -116,7 +116,7 @@ public void packLongs(long[] input) {
116
messageFormatter.flush();
117
118
119
120
121
public void packInts(long[] input) {
122
final int[] asInts = new int[input.length];
0 commit comments