René's URL Explorer Experiment


Title: Test generation for Optional in the plugin (#226) by dtim · Pull Request #305 · UnitTestBot/UTBotJava · GitHub

Open Graph Title: Test generation for Optional in the plugin (#226) by dtim · Pull Request #305 · UnitTestBot/UTBotJava

X Title: Test generation for Optional in the plugin (#226) by dtim · Pull Request #305 · UnitTestBot/UTBotJava

Description: Description Added a check for overridden classes in shouldMock to avoid access to engine classes that are not available in the plugin. Implemented more accurate speculative marking of final fields as not null to avoid losing paths involving Optional.empty(), to enable NPE checks for final fields in user code, and to avoid generating non-informative NPE tests for final fields in system classes. UtSettings.checkNpeForFinalFields is now set default (false) in AbstractTestCaseGEneratorTest and SummaryTestCaseGeneratorTest. Fixes #226 Details There were two issues with test generation for Optional. The shouldMock function tried to load overridden classes (in particular, UtOptional) and failed as the entire org.utbot.engine.overrides package is not included in the UtContext class loader created by the plugin. This commit fixes the problem an explicit check for overridden classes in shouldMock. Execution paths involving Optional.empty() were lost. This was caused by the assumption that all final fields can be considered non-nullable to reduce the number of irrelevant NPE execution paths, especially in system classes, that can usually be reproduced only by reflection. The Optional class is different from most other system classes as it uses null as the marker of the empty value in its final field. The "non-nullable final" optimization leads to discarding execution paths with Optional.empty() as UNSAT, as the final value field should be both null (explicit assignment) and not null (assumption for final fields). This commit introduces a new memory array to track final fields. For each NPE branch, the "value is null" condition is augmented by the "field is not final" condition. As a result, NPE branches for final fields are discarded with UNSAT, while non-final fields are not affected. The finality check is enabled for system classes only, and may be turned off by setting UtSettings.checkNpeForFinalFields to true. Type of Change Breaking change (fix or feature that would cause existing functionality to not work as expected) This commit changes the default behavior of the engine with respect to final fields nullability assumptions. Previous behavior: null values for final fields are not allowed. Branches where the final field gets null value are discarded even if they are legitimate. No NPE tests are generated. New behavior: null values for final fields are allowed. NPE branches for final fields of system classes are discarded (the only expected change for system classes is fixing the Optional.empty() bug and any similar bugs if they exist), but can be allowed by setting UtSettings.checkNpeForFinalFields to true. NPE tests for application classes are now generated (they may be legit or redundant, but the best way to avoid redundant tests here and not to lose legit branches is to create objects using the public API instead of reflection). How Has This Been Tested? Automated Testing The UtSettings.checkNpeForFinalFields = true setting was previously used to allow NPE branch generation for final fields in utbot-framework unit tests. Setting it to false would break some tests. This commit turns off this special mode, so utbot-framework use the same settings w.r.t. final fields nullability as the plugin. No new test failures have been detected in this mode. A new test case was added: org.utbot.examples.collections.OptionalsTest#testOptionalOfPositive. Manual Scenario Generate tests for the following examples using the plugin. Optional.empty() public class OptionalExamples { public Optional nonEmptyIfPositive(int n) { if (n > 0) { return Optional.of(n); } else { return Optional.empty(); } } public Optional nonEmptyIfTrue(boolean condition) { return condition ? Optional.of(true) : Optional.empty(); } } For both methods, two tests should be generated, one expecting a non-empty value, and one expecting the Optional.empty() result. No NPE tests should be generated. NPE checks for application classes public class FinalNulls { private final Integer shift; public FinalNulls() { this.shift = null; } public FinalNulls(int shift) { this.shift = shift; } public int plus(int a){ return a + shift; } } Two tests should be generated: a test for shift != null and a NPE test (shift == null). Checklist (remove irrelevant options): 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 No new warnings Tests that prove my change is effective All tests pass locally with my changes

Open Graph Description: Description Added a check for overridden classes in shouldMock to avoid access to engine classes that are not available in the plugin. Implemented more accurate speculative marking of final fields ...

X Description: Description Added a check for overridden classes in shouldMock to avoid access to engine classes that are not available in the plugin. Implemented more accurate speculative marking of final fields ...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:a07d90b6-7f08-c1cb-b510-af149afa09d3
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9170:121D90:67EFF7:8AF913:698ED78B
html-safe-nonce34f8e22d237f9574b96911326216f16b05ee009c5a1e46131c6214d1f069a10e
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5MTcwOjEyMUQ5MDo2N0VGRjc6OEFGOTEzOjY5OEVENzhCIiwidmlzaXRvcl9pZCI6IjcwNTYzMTg4Nzg5NDc2NjE3MDgiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac29769df8109bf2cafd797604c66f6f971526626cf43e34c64c7dd5e4ef15877c
hovercard-subject-tagpull_request:979695440
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/305/files
twitter:imagehttps://avatars.githubusercontent.com/u/336793?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/336793?s=400&v=4
og:image:altDescription Added a check for overridden classes in shouldMock to avoid access to engine classes that are not available in the plugin. Implemented more accurate speculative marking of final fields ...
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
releasee6b91a7e6e46287d26887e3fb7a4161657bab8f7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/UnitTestBot/UTBotJava/pull/305/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FUnitTestBot%2FUTBotJava%2Fpull%2F305%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%2F305%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/305/files
Reloadhttps://github.com/UnitTestBot/UTBotJava/pull/305/files
Reloadhttps://github.com/UnitTestBot/UTBotJava/pull/305/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
dtimhttps://github.com/dtim
mainhttps://github.com/UnitTestBot/UTBotJava/tree/main
dtim/226-test-generation-for-optionalhttps://github.com/UnitTestBot/UTBotJava/tree/dtim/226-test-generation-for-optional
Conversation 11 https://github.com/UnitTestBot/UTBotJava/pull/305
Commits 2 https://github.com/UnitTestBot/UTBotJava/pull/305/commits
Checks 0 https://github.com/UnitTestBot/UTBotJava/pull/305/checks
Files changed https://github.com/UnitTestBot/UTBotJava/pull/305/files
Please reload this pagehttps://github.com/UnitTestBot/UTBotJava/pull/305/files
Test generation for Optional in the plugin (#226) https://github.com/UnitTestBot/UTBotJava/pull/305/files#top
Show all changes 2 commits https://github.com/UnitTestBot/UTBotJava/pull/305/files
b97803d Test generation for Optional in the plugin (#226) dtim Jun 20, 2022 https://github.com/UnitTestBot/UTBotJava/pull/305/commits/b97803d8d68e3a707e968a790e8b58f91df8579d
fa9e67b Disabled flaky test: testLongMulOverflow dtim Jun 28, 2022 https://github.com/UnitTestBot/UTBotJava/pull/305/commits/fa9e67bc2b2d33fde9b1285b7fc18a727a07dd18
Clear filters https://github.com/UnitTestBot/UTBotJava/pull/305/files
Please reload this pagehttps://github.com/UnitTestBot/UTBotJava/pull/305/files
Please reload this pagehttps://github.com/UnitTestBot/UTBotJava/pull/305/files
SpeculativeFieldNonNullability.md https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-041eda45547fbbb435ff965ee7e3b7ca5ae3a972f90347245ea146833d8702c3
Extensions.kt https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-7c20e1c61c02941e4414038ec9ce4f4cff3cfce4becf0885e80d25b0e0cada54
Memory.kt https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-3f76502cdbc1625fb82fc4c393730cfb375972de758e0d2e01e58d82dba71a39
Mocks.kt https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-9fb9ad644d2bfa2deebaee7e6e842a87e9adc9395e7a33eebd97fbb8bd701e95
UtBotSymbolicEngine.kt https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
AbstractTestCaseGeneratorTest.kt https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-cfe69e3f1a77b9aaef7f7410409434569448e419e578cc7c1b618248441f3744
OptionalsTest.kt https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-824f272deb02dcefc221621e1171142769a5697c1c2394b1ecfd5fae44a906ba
OverflowAsErrorTest.kt https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-b935a1d924a5fb29830173337e303c3915a10b9f7316b8576c31439235e6b7b4
Optionals.java https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-d06fadb19cb9ce871736f66ee38a6571727a078735d58842a386e8e870ffc6a1
SummaryTestCaseGeneratorTest.kt https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-efa53bbb09225d924c2626e43d52afe399982889615c9915ffc4015f036b39e6
docs/SpeculativeFieldNonNullability.mdhttps://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-041eda45547fbbb435ff965ee7e3b7ca5ae3a972f90347245ea146833d8702c3
View file https://github.com/UnitTestBot/UTBotJava/blob/fa9e67bc2b2d33fde9b1285b7fc18a727a07dd18/docs/SpeculativeFieldNonNullability.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/305/{{ revealButtonHref }}
utbot-framework/src/main/kotlin/org/utbot/engine/Extensions.kthttps://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-7c20e1c61c02941e4414038ec9ce4f4cff3cfce4becf0885e80d25b0e0cada54
View file https://github.com/UnitTestBot/UTBotJava/blob/fa9e67bc2b2d33fde9b1285b7fc18a727a07dd18/utbot-framework/src/main/kotlin/org/utbot/engine/Extensions.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/305/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-7c20e1c61c02941e4414038ec9ce4f4cff3cfce4becf0885e80d25b0e0cada54
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-7c20e1c61c02941e4414038ec9ce4f4cff3cfce4becf0885e80d25b0e0cada54
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-7c20e1c61c02941e4414038ec9ce4f4cff3cfce4becf0885e80d25b0e0cada54
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-7c20e1c61c02941e4414038ec9ce4f4cff3cfce4becf0885e80d25b0e0cada54
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-7c20e1c61c02941e4414038ec9ce4f4cff3cfce4becf0885e80d25b0e0cada54
utbot-framework/src/main/kotlin/org/utbot/engine/Memory.kthttps://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-3f76502cdbc1625fb82fc4c393730cfb375972de758e0d2e01e58d82dba71a39
View file https://github.com/UnitTestBot/UTBotJava/blob/fa9e67bc2b2d33fde9b1285b7fc18a727a07dd18/utbot-framework/src/main/kotlin/org/utbot/engine/Memory.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/305/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-3f76502cdbc1625fb82fc4c393730cfb375972de758e0d2e01e58d82dba71a39
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-3f76502cdbc1625fb82fc4c393730cfb375972de758e0d2e01e58d82dba71a39
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-3f76502cdbc1625fb82fc4c393730cfb375972de758e0d2e01e58d82dba71a39
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-3f76502cdbc1625fb82fc4c393730cfb375972de758e0d2e01e58d82dba71a39
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-3f76502cdbc1625fb82fc4c393730cfb375972de758e0d2e01e58d82dba71a39
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-3f76502cdbc1625fb82fc4c393730cfb375972de758e0d2e01e58d82dba71a39
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-3f76502cdbc1625fb82fc4c393730cfb375972de758e0d2e01e58d82dba71a39
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-3f76502cdbc1625fb82fc4c393730cfb375972de758e0d2e01e58d82dba71a39
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-3f76502cdbc1625fb82fc4c393730cfb375972de758e0d2e01e58d82dba71a39
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-3f76502cdbc1625fb82fc4c393730cfb375972de758e0d2e01e58d82dba71a39
utbot-framework/src/main/kotlin/org/utbot/engine/Mocks.kthttps://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-9fb9ad644d2bfa2deebaee7e6e842a87e9adc9395e7a33eebd97fbb8bd701e95
View file https://github.com/UnitTestBot/UTBotJava/blob/fa9e67bc2b2d33fde9b1285b7fc18a727a07dd18/utbot-framework/src/main/kotlin/org/utbot/engine/Mocks.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/305/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-9fb9ad644d2bfa2deebaee7e6e842a87e9adc9395e7a33eebd97fbb8bd701e95
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-9fb9ad644d2bfa2deebaee7e6e842a87e9adc9395e7a33eebd97fbb8bd701e95
utbot-framework/src/main/kotlin/org/utbot/engine/UtBotSymbolicEngine.kthttps://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
View file https://github.com/UnitTestBot/UTBotJava/blob/fa9e67bc2b2d33fde9b1285b7fc18a727a07dd18/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/305/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-c98f4140e62e268dc10fc13fa079011d64b75049b55fc664ca43e6c4aa6f5280
utbot-framework/src/test/kotlin/org/utbot/examples/AbstractTestCaseGeneratorTest.kthttps://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-cfe69e3f1a77b9aaef7f7410409434569448e419e578cc7c1b618248441f3744
View file https://github.com/UnitTestBot/UTBotJava/blob/fa9e67bc2b2d33fde9b1285b7fc18a727a07dd18/utbot-framework/src/test/kotlin/org/utbot/examples/AbstractTestCaseGeneratorTest.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/305/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-cfe69e3f1a77b9aaef7f7410409434569448e419e578cc7c1b618248441f3744
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-cfe69e3f1a77b9aaef7f7410409434569448e419e578cc7c1b618248441f3744
utbot-framework/src/test/kotlin/org/utbot/examples/collections/OptionalsTest.kthttps://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-824f272deb02dcefc221621e1171142769a5697c1c2394b1ecfd5fae44a906ba
View file https://github.com/UnitTestBot/UTBotJava/blob/fa9e67bc2b2d33fde9b1285b7fc18a727a07dd18/utbot-framework/src/test/kotlin/org/utbot/examples/collections/OptionalsTest.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/305/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-824f272deb02dcefc221621e1171142769a5697c1c2394b1ecfd5fae44a906ba
utbot-framework/src/test/kotlin/org/utbot/examples/math/OverflowAsErrorTest.kthttps://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-b935a1d924a5fb29830173337e303c3915a10b9f7316b8576c31439235e6b7b4
View file https://github.com/UnitTestBot/UTBotJava/blob/fa9e67bc2b2d33fde9b1285b7fc18a727a07dd18/utbot-framework/src/test/kotlin/org/utbot/examples/math/OverflowAsErrorTest.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/305/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-b935a1d924a5fb29830173337e303c3915a10b9f7316b8576c31439235e6b7b4
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-b935a1d924a5fb29830173337e303c3915a10b9f7316b8576c31439235e6b7b4
utbot-sample/src/main/java/org/utbot/examples/collections/Optionals.javahttps://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-d06fadb19cb9ce871736f66ee38a6571727a078735d58842a386e8e870ffc6a1
View file https://github.com/UnitTestBot/UTBotJava/blob/fa9e67bc2b2d33fde9b1285b7fc18a727a07dd18/utbot-sample/src/main/java/org/utbot/examples/collections/Optionals.java
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/305/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-d06fadb19cb9ce871736f66ee38a6571727a078735d58842a386e8e870ffc6a1
utbot-summary-tests/src/test/kotlin/examples/SummaryTestCaseGeneratorTest.kthttps://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-efa53bbb09225d924c2626e43d52afe399982889615c9915ffc4015f036b39e6
View file https://github.com/UnitTestBot/UTBotJava/blob/fa9e67bc2b2d33fde9b1285b7fc18a727a07dd18/utbot-summary-tests/src/test/kotlin/examples/SummaryTestCaseGeneratorTest.kt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/UnitTestBot/UTBotJava/pull/305/{{ revealButtonHref }}
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-efa53bbb09225d924c2626e43d52afe399982889615c9915ffc4015f036b39e6
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-efa53bbb09225d924c2626e43d52afe399982889615c9915ffc4015f036b39e6
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-efa53bbb09225d924c2626e43d52afe399982889615c9915ffc4015f036b39e6
https://github.com/UnitTestBot/UTBotJava/pull/305/files#diff-efa53bbb09225d924c2626e43d52afe399982889615c9915ffc4015f036b39e6
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.