Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,11 @@ void fuzzListOfMaps(@WithSize(max = 4) Map<String, Integer> nullableMap) {

@SelfFuzzTest
void fuzzListOfSets(@WithSize(max = 10) @NotNull Set<@NotNull Integer> setWithSize) {
if (setWithSize != null) {
assertThat(setWithSize.size()).isAtMost(10);
}
assertThat(setWithSize.size()).isAtMost(10);
}

@SelfFuzzTest
void fuzzListOfLists(List<@NotNull List<String>> nullableMap, List<List<Integer>> nullableList) {}
void fuzzListOfLists(List<@NotNull List<String>> list, List<List<Integer>> nullableList) {}

@SelfFuzzTest
void fuzzPrimitiveArrays(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import java.util.Set;

/**
* Generates a {@link List} or {@link Map} with the specified size.
* Generates a {@link List}, {@link Set} or {@link Map} with the specified size.
*
* @see WithLength
* @see WithUtf8Length
Expand Down