René's URL Explorer Experiment


Title: Fuzzer should generate tests for simple collection with generic types #875 by Markoutte · Pull Request #988 · UnitTestBot/UTBotJava · GitHub

Open Graph Title: Fuzzer should generate tests for simple collection with generic types #875 by Markoutte · Pull Request #988 · UnitTestBot/UTBotJava

X Title: Fuzzer should generate tests for simple collection with generic types #875 by Markoutte · Pull Request #988 · UnitTestBot/UTBotJava

Description: Description Introduces provider to generate collections with generic types. Now, fuzzer creates tests with values for such types as Collection, Map, and recursive types like: Collection>, Map>. Fixes #875 Type of Change Breaking change (fix or feature that would cause existing functionality to not work as expected) How Has This Been Tested? Automated Testing Run: org.utbot.framework.plugin.api.ModelProviderTest org.utbot.framework.plugin.api.CollectionModelProviderTest Manual Scenario Here several examples which can be tested: public class CollectionExample { /** * Should create unsorted list that will be sorted as a result. */ public static Collection sorted(Collection source) { return source.stream().sorted().collect(Collectors.toList()); } /** * Should create at least both answers: one that finds the key, and another returns null. */ public static String getKeyForValue(Map map, Number value) { for (Map.Entry entry : map.entrySet()) { if (Objects.equals(entry.getValue(), value)) { return entry.getKey(); } } return null; } /** * Should find a branch that returns true and size of array is greater than 1 (non-trivial). */ public static boolean isDiagonal(Collection> matrix) { int cols = matrix.size(); if (cols <= 1) { return false; } int i = 0; for (Collection col : matrix) { if (col.size() != cols) { return false; } int j = 0; for (Double value : col) { if (i == j && value == 0.0) return false; if (i != j && value != 0.0) return false; j++; } i++; } return true; } /** * Checks that different collections can be created. Part 1 */ public boolean allCollectionAreSameSize1( Collection c, List l, Set s, SortedSet ss, Deque d, Iterable i ) { if (c.size() != l.size()) { return false; } if (l.size() != s.size()) { return false; } if (s.size() != ss.size()) { return false; } if (ss.size() != d.size()) { return false; } if (d.size() != StreamSupport.stream(i.spliterator(), false).count()) { return false; } return true; } /** * Checks that different collections can be created. Part 2 */ public boolean allCollectionAreSameSize2( Iterable i, Stack st, NavigableSet ns, Map m, SortedMap sm, NavigableMap nm ) { if (StreamSupport.stream(i.spliterator(), false).count() != st.size()) { return false; } if (st.size() != ns.size()) { return false; } if (ns.size() != m.size()) { return false; } if (m.size() != sm.size()) { return false; } if (sm.size() != nm.size()) { return false; } return true; } /** * Should create TreeSet without any modifications as T extends Number is not Comparable */ public boolean testTreeSetWithoutComparable(NavigableSet set) { if (set.size() > 5) { return true; } return false; } /** * Should create TreeSet with modifications as Integer is Comparable */ public boolean testTreeSetWithComparable(NavigableSet set) { if (set.size() > 5) { return true; } return false; } static class ConcreteList extends LinkedList {} /** * Should create concrete class */ public boolean testConcreteCollectionIsCreated(ConcreteList list) { if (list.size() > 5) { return true; } return false; } static class ConcreteMap extends HashMap { } /** * Should create concrete class */ public boolean testConcreteMapIsCreated(ConcreteMap map) { if (map.size() > 5) { return true; } return false; } } Checklist: The change followed the style guidelines of the UTBot project Self-review of the code is passed The change contains enough commentaries, particularly in hard-to-understand areas New documentation is provided or existed one is altered No new warnings New tests have been added All tests pass locally with my changes

Open Graph Description: Description Introduces provider to generate collections with generic types. Now, fuzzer creates tests with values for such types as Collection<Integer>, Map<MyClass, String>, and recurs...

X Description: Description Introduces provider to generate collections with generic types. Now, fuzzer creates tests with values for such types as Collection&lt;Integer&gt;, Map&lt;MyClass, String&...

Opengraph URL: https://github.com/UnitTestBot/UTBotJava/pull/988

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:d961c53e-7e9a-0a76-711d-2aa20e0ef612
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9FA8:896E0:65CC63:8388DF:698E7CBA
html-safe-nonce3da672a712afdf9b510742fe5d5a3fcb02e11fa6b347279ef5f3a5a99764a951
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5RkE4Ojg5NkUwOjY1Q0M2Mzo4Mzg4REY6Njk4RTdDQkEiLCJ2aXNpdG9yX2lkIjoiMTI2OTI0ODY4NTU0NTI1ODE3MCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac1050020fc86757f289132ab77099305638fb19d8387196f0c20311e444c18ff5
hovercard-subject-tagpull_request:1062828034
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/UnitTestBot/UTBotJava/pull/988/files
twitter:imagehttps://avatars.githubusercontent.com/u/720952?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/720952?s=400&v=4
og:image:altDescription Introduces provider to generate collections with generic types. Now, fuzzer creates tests with values for such types as Collection<Integer>, Map<MyClass, String>, and recurs...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonecb2828a801ee6b7be618f3ac76fbf55def35bbc30f053a9c41bf90210b8b72ba
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/UnitTestBot/UTBotJava git https://github.com/UnitTestBot/UTBotJava.git
octolytics-dimension-user_id87413538
octolytics-dimension-user_loginUnitTestBot
octolytics-dimension-repository_id480810501
octolytics-dimension-repository_nwoUnitTestBot/UTBotJava
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id480810501
octolytics-dimension-repository_network_root_nwoUnitTestBot/UTBotJava
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef7a12861f7011eecb14bcc4388a767d829a52dfc
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/UnitTestBot/UTBotJava/pull/988/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FUnitTestBot%2FUTBotJava%2Fpull%2F988%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FUnitTestBot%2FUTBotJava%2Fpull%2F988%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=UnitTestBot%2FUTBotJava
Reloadhttps://github.com/UnitTestBot/UTBotJava/pull/988/files
Reloadhttps://github.com/UnitTestBot/UTBotJava/pull/988/files
Reloadhttps://github.com/UnitTestBot/UTBotJava/pull/988/files
UnitTestBot https://github.com/UnitTestBot
UTBotJavahttps://github.com/UnitTestBot/UTBotJava
Notifications https://github.com/login?return_to=%2FUnitTestBot%2FUTBotJava
Fork 45 https://github.com/login?return_to=%2FUnitTestBot%2FUTBotJava
Star 142 https://github.com/login?return_to=%2FUnitTestBot%2FUTBotJava
Code https://github.com/UnitTestBot/UTBotJava
Issues 386 https://github.com/UnitTestBot/UTBotJava/issues
Pull requests 33 https://github.com/UnitTestBot/UTBotJava/pulls
Discussions https://github.com/UnitTestBot/UTBotJava/discussions
Actions https://github.com/UnitTestBot/UTBotJava/actions
Projects 1 https://github.com/UnitTestBot/UTBotJava/projects
Wiki https://github.com/UnitTestBot/UTBotJava/wiki
Security 0 https://github.com/UnitTestBot/UTBotJava/security
Insights https://github.com/UnitTestBot/UTBotJava/pulse
Code https://github.com/UnitTestBot/UTBotJava
Issues https://github.com/UnitTestBot/UTBotJava/issues
Pull requests https://github.com/UnitTestBot/UTBotJava/pulls
Discussions https://github.com/UnitTestBot/UTBotJava/discussions
Actions https://github.com/UnitTestBot/UTBotJava/actions
Projects https://github.com/UnitTestBot/UTBotJava/projects
Wiki https://github.com/UnitTestBot/UTBotJava/wiki
Security https://github.com/UnitTestBot/UTBotJava/security
Insights https://github.com/UnitTestBot/UTBotJava/pulse
Sign up for GitHub https://github.com/signup?return_to=%2FUnitTestBot%2FUTBotJava%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2FUnitTestBot%2FUTBotJava%2Fissues%2Fnew%2Fchoose
Markouttehttps://github.com/Markoutte
mainhttps://github.com/UnitTestBot/UTBotJava/tree/main
pelevin/875_Fuzzer_should_generate_tests_for_simple_collection_with_generic_typeshttps://github.com/UnitTestBot/UTBotJava/tree/pelevin/875_Fuzzer_should_generate_tests_for_simple_collection_with_generic_types
Conversation 4 https://github.com/UnitTestBot/UTBotJava/pull/988
Commits 3 https://github.com/UnitTestBot/UTBotJava/pull/988/commits
Checks 0 https://github.com/UnitTestBot/UTBotJava/pull/988/checks
Files changed https://github.com/UnitTestBot/UTBotJava/pull/988/files
Please reload this pagehttps://github.com/UnitTestBot/UTBotJava/pull/988/files
Fuzzer should generate tests for simple collection with generic types #875 https://github.com/UnitTestBot/UTBotJava/pull/988/files#top
Show all changes 3 commits https://github.com/UnitTestBot/UTBotJava/pull/988/files
884fad0 Fuzzer should generate tests for simple collection with generic types… Markoutte Sep 13, 2022 https://github.com/UnitTestBot/UTBotJava/pull/988/commits/884fad01ae37f44dddd13ba8fc259fd561f7c085
b618d6b Improvements after review: Markoutte Sep 23, 2022 https://github.com/UnitTestBot/UTBotJava/pull/988/commits/b618d6b05b7b93a265fd668cbb2f74feb41d1bd5
3c75fb8 Temporary remove logic around limiting values from model constructor Markoutte Sep 23, 2022 https://github.com/UnitTestBot/UTBotJava/pull/988/commits/3c75fb80d29dd9f74b8da043efac7853f8476e26
Clear filters https://github.com/UnitTestBot/UTBotJava/pull/988/files
Please reload this pagehttps://github.com/UnitTestBot/UTBotJava/pull/988/files
Please reload this pagehttps://github.com/UnitTestBot/UTBotJava/pull/988/files
UtBotSymbolicEngine.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
FuzzerFunctions.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-6477903d2ab68a3e8741d07536b97f49a7c82429bc87b6bf9daa4caa642e8360
FuzzedMethodDescription.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-48040bfbe213c8e9222919c155e154f06e8c20fb01e77ed0df178e69ebd1493a
FuzzedType.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-500ea9c6c6cfa202acc81dbd0bebc4d180b704b1e65a8675c533b5d7cfcb0a16
Fuzzer.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-cc5eda9c12327c4fc623d0b83609e3e18dfea4aa29fc7dbf355d505ab658fd62
AssembleModelUtils.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-c733a79500a9672f2e3a38b934ecc0f1af1983695946c07c98fa68e90c30af4e
ArrayModelProvider.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-a66bcbb5f1e16282f379e9f8f2b975a707874bb4ca5e848dc6e4a19452e4da2a
CollectionModelProvider.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-bd2581d2f923b61a29d399c8005849631424ddee734c754ae4f9e2fe26ebf57e
CollectionWithEmptyStatesModelProvider.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-225e09f7e1b1e2d8e2e1cd8dd0fd25535e70b5d57ec4adea98c8ad5f712a27b5
CollectionWithModificationModelProvider.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-d9ad2a66c356e247ca725b3828fc78528ea00e3215ac017c18d1b5deb25201bd
ConstantsModelProvider.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-79e21f3bd2f2b9074c189761fe0067fbe4d6cef68f9cfb01e4737277ab1e6d06
DateConstantModelProvider.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-a0a5e9a4018169459d75d04778ebee8f0ae9396dd41292e493b5323050c38c52
NumberClassModelProvider.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-bcd6970c4d6d6f798bd21392b660cf172488cc670bdf53c57b5e2a0e3c51b2d1
ObjectModelProvider.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-b5a9de00e3062ccca5542ecf728a101fbd4f89f91e45487d41d7dd8b62d2394f
PrimitiveRandomModelProvider.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-d141f0e32ee102f2c82534e9e0e85187bee36e56fa9473e07fde480be147ed45
RecursiveModelProvider.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-833ee1f31fa2b0624ad8ecc6ecb053736487812dfd09cb4cd3110247d8b7015c
CollectionModelProviderTest.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-36cd34e122dd93d5ab2c75cef84b668fc72f477475e637f89e63c6b73619ab32
ModelProviderTest.kt https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-0d81a3cff594c22a8725f4d774ad574b629a6612c211af0c3d35f175b2f3ec7b
utbot-framework/src/main/kotlin/org/utbot/engine/UtBotSymbolicEngine.kthttps://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
View file https://github.com/UnitTestBot/UTBotJava/blob/3c75fb80d29dd9f74b8da043efac7853f8476e26/utbot-framework/src/main/kotlin/org/utbot/engine/UtBotSymbolicEngine.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/988/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
utbot-framework/src/main/kotlin/org/utbot/fuzzer/FuzzerFunctions.kthttps://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-6477903d2ab68a3e8741d07536b97f49a7c82429bc87b6bf9daa4caa642e8360
View file https://github.com/UnitTestBot/UTBotJava/blob/3c75fb80d29dd9f74b8da043efac7853f8476e26/utbot-framework/src/main/kotlin/org/utbot/fuzzer/FuzzerFunctions.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/988/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-6477903d2ab68a3e8741d07536b97f49a7c82429bc87b6bf9daa4caa642e8360
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-6477903d2ab68a3e8741d07536b97f49a7c82429bc87b6bf9daa4caa642e8360
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-6477903d2ab68a3e8741d07536b97f49a7c82429bc87b6bf9daa4caa642e8360
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-6477903d2ab68a3e8741d07536b97f49a7c82429bc87b6bf9daa4caa642e8360
Please reload this pagehttps://github.com/UnitTestBot/UTBotJava/pull/988/files
utbot-fuzzers/src/main/kotlin/org/utbot/fuzzer/FuzzedMethodDescription.kthttps://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-48040bfbe213c8e9222919c155e154f06e8c20fb01e77ed0df178e69ebd1493a
View file https://github.com/UnitTestBot/UTBotJava/blob/3c75fb80d29dd9f74b8da043efac7853f8476e26/utbot-fuzzers/src/main/kotlin/org/utbot/fuzzer/FuzzedMethodDescription.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/988/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-48040bfbe213c8e9222919c155e154f06e8c20fb01e77ed0df178e69ebd1493a
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-48040bfbe213c8e9222919c155e154f06e8c20fb01e77ed0df178e69ebd1493a
utbot-fuzzers/src/main/kotlin/org/utbot/fuzzer/FuzzedType.kthttps://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-500ea9c6c6cfa202acc81dbd0bebc4d180b704b1e65a8675c533b5d7cfcb0a16
View file https://github.com/UnitTestBot/UTBotJava/blob/3c75fb80d29dd9f74b8da043efac7853f8476e26/utbot-fuzzers/src/main/kotlin/org/utbot/fuzzer/FuzzedType.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/988/{{ revealButtonHref }}
utbot-fuzzers/src/main/kotlin/org/utbot/fuzzer/Fuzzer.kthttps://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-cc5eda9c12327c4fc623d0b83609e3e18dfea4aa29fc7dbf355d505ab658fd62
View file https://github.com/UnitTestBot/UTBotJava/blob/3c75fb80d29dd9f74b8da043efac7853f8476e26/utbot-fuzzers/src/main/kotlin/org/utbot/fuzzer/Fuzzer.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/988/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-cc5eda9c12327c4fc623d0b83609e3e18dfea4aa29fc7dbf355d505ab658fd62
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-cc5eda9c12327c4fc623d0b83609e3e18dfea4aa29fc7dbf355d505ab658fd62
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-cc5eda9c12327c4fc623d0b83609e3e18dfea4aa29fc7dbf355d505ab658fd62
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-cc5eda9c12327c4fc623d0b83609e3e18dfea4aa29fc7dbf355d505ab658fd62
utbot-fuzzers/src/main/kotlin/org/utbot/fuzzer/objects/AssembleModelUtils.kthttps://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-c733a79500a9672f2e3a38b934ecc0f1af1983695946c07c98fa68e90c30af4e
View file https://github.com/UnitTestBot/UTBotJava/blob/3c75fb80d29dd9f74b8da043efac7853f8476e26/utbot-fuzzers/src/main/kotlin/org/utbot/fuzzer/objects/AssembleModelUtils.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/988/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-c733a79500a9672f2e3a38b934ecc0f1af1983695946c07c98fa68e90c30af4e
utbot-fuzzers/src/main/kotlin/org/utbot/fuzzer/providers/ArrayModelProvider.kthttps://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-a66bcbb5f1e16282f379e9f8f2b975a707874bb4ca5e848dc6e4a19452e4da2a
View file https://github.com/UnitTestBot/UTBotJava/blob/3c75fb80d29dd9f74b8da043efac7853f8476e26/utbot-fuzzers/src/main/kotlin/org/utbot/fuzzer/providers/ArrayModelProvider.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/988/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-a66bcbb5f1e16282f379e9f8f2b975a707874bb4ca5e848dc6e4a19452e4da2a
https://github.com/UnitTestBot/UTBotJava/pull/988/files#diff-a66bcbb5f1e16282f379e9f8f2b975a707874bb4ca5e848dc6e4a19452e4da2a
Please reload this pagehttps://github.com/UnitTestBot/UTBotJava/pull/988/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.