You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For simple methods fuzzer can and should generate test that fills collection with some data. Consider this example:
public <T> Map<String, T> sortedMap(Map<String, T> source) {
returnnewTreeMap<>(source);
}
Both fuzzer and symbolic execution create empty map. But this test is not very interesting. Fuzzer should add some values into a map to run it with them and check, how it affects the result.
The text was updated successfully, but these errors were encountered:
Description
For simple methods fuzzer can and should generate test that fills collection with some data. Consider this example:
Both fuzzer and symbolic execution create empty map. But this test is not very interesting. Fuzzer should add some values into a map to run it with them and check, how it affects the result.
The text was updated successfully, but these errors were encountered: