Skip to content

Commit

Permalink
feat(objectionary#637): add javadocs for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Sep 5, 2024
1 parent f6212ed commit 4d4c76d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ void decodesDescriptors(final String name, final String descr, final String enco
);
}

/**
* Provides names, descriptors and encoded values.
* This method is used by {@link #encodesNamesWithDescriptors(String, String, String)},
* {@link #decodesNames(String, String, String)}
* and {@link #decodesDescriptors(String, String, String)}.
* @return Arguments for tests.
*/
@SuppressWarnings("PMD.UnusedPrivateMethod")
private static Stream<Arguments> namesDescriptorsAndEncoded() {
return Stream.of(
Arguments.of("foo", "()I", "foo-KClJ"),
Expand Down

0 comments on commit 4d4c76d

Please sign in to comment.