René's URL Explorer Experiment


Title: ClassCastException when processing UtEnumConstantModel · Issue #230 · UnitTestBot/UTBotJava · GitHub

Open Graph Title: ClassCastException when processing UtEnumConstantModel · Issue #230 · UnitTestBot/UTBotJava

X Title: ClassCastException when processing UtEnumConstantModel · Issue #230 · UnitTestBot/UTBotJava

Description: Description Processing of Enum types may result in ClassCastException, as UtEnumConstantModel is incorrectly cast to UtReferenceModel in several situations, in particular: ArrayObjectWrappers.kt: AssociativeArrayWrapper.value() (the loca...

Open Graph Description: Description Processing of Enum types may result in ClassCastException, as UtEnumConstantModel is incorrectly cast to UtReferenceModel in several situations, in particular: ArrayObjectWrappers.kt: A...

X Description: Description Processing of Enum types may result in ClassCastException, as UtEnumConstantModel is incorrectly cast to UtReferenceModel in several situations, in particular: ArrayObjectWrappers.kt: A...

Opengraph URL: https://github.com/UnitTestBot/UTBotJava/issues/230

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"ClassCastException when processing UtEnumConstantModel","articleBody":"**Description**\r\n\r\nProcessing of `Enum` types may result in `ClassCastException`, as `UtEnumConstantModel` is incorrectly cast to `UtReferenceModel` in several situations, in particular:\r\n\r\n  * `ArrayObjectWrappers.kt`: `AssociativeArrayWrapper.value()` (the location related to the reproducible example below).\r\n  * `CollectionWrappers.kt`: `constructKeysAndValues()` (a similar type cast).\r\n\r\n**To Reproduce**\r\n\r\nGenerate the test suite for the `MapExamples` class.\r\n\r\n`Color.java`:\r\n```\r\npublic enum Color {\r\n    UNDEFINED,\r\n    RED,\r\n    YELLOW,\r\n    GREEN\r\n}\r\n```\r\n\r\n`MapExamples.java`:\r\n```\r\npublic class MapExamples {\r\n    public Color[] transduce(@NotNull Color[] inputs, @NotNull HashMap\u003cColor, Color\u003e fst) {\r\n        if (inputs.length \u003e 0) {\r\n            Color[] result = new Color[inputs.length];\r\n            for (int i = 0; i \u003c inputs.length; i++) {\r\n                result[i] = fst.getOrDefault(inputs[i], Color.UNDEFINED);\r\n            }\r\n            return result;\r\n        } else {\r\n            return new Color[0];\r\n        }\r\n    }\r\n\r\n    public Color[] trafficLightTransduce(@NotNull Color[] inputs) {\r\n        HashMap\u003cColor, Color\u003e trafficLight = new HashMap\u003c\u003e();\r\n        trafficLight.put(Color.RED, Color.GREEN);\r\n        trafficLight.put(Color.GREEN, Color.YELLOW);\r\n        trafficLight.put(Color.YELLOW, Color.RED);\r\n\r\n        return transduce(inputs, trafficLight);\r\n    }\r\n}\r\n```\r\n\r\n**Expected behavior**\r\n\r\nTest suite is generated, no `ClassCastException` errors are reported.\r\n\r\n**Actual behavior**\r\n\r\nNo tests are generated, the plugin fails with the following exception:\r\n\r\n```\r\njava.lang.ClassCastException: class org.utbot.framework.plugin.api.UtEnumConstantModel cannot be cast to class org.utbot.framework.plugin.api.UtReferenceModel (org.utbot.framework.plugin.api.UtEnumConstantModel and org.utbot.framework.plugin.api.UtReferenceModel are in unnamed module of loader com.intellij.ide.plugins.cl.PluginClassLoader @56d6d8d8)\r\n\tat org.utbot.engine.AssociativeArrayWrapper.value(ArrayObjectWrappers.kt:382)\r\n\tat org.utbot.engine.Resolver.resolveObject(Resolver.kt:454)\r\n\tat org.utbot.engine.Resolver.resolveReferenceValue(Resolver.kt:424)\r\n\tat org.utbot.engine.Resolver.resolveModel(Resolver.kt:395)\r\n\tat org.utbot.engine.Resolver.collectFieldModels(Resolver.kt:581)\r\n\tat org.utbot.engine.MapWrapper.resolveValueModels(CollectionWrappers.kt:309)\r\n\tat org.utbot.engine.BaseCollectionWrapper.value(CollectionWrappers.kt:108)\r\n\tat org.utbot.engine.BaseCollectionWrapper.value(CollectionWrappers.kt:99)\r\n\tat org.utbot.engine.Resolver.resolveObject(Resolver.kt:454)\r\n\tat org.utbot.engine.Resolver.resolveReferenceValue(Resolver.kt:424)\r\n\tat org.utbot.engine.Resolver.resolveModel(Resolver.kt:395)\r\n\tat org.utbot.engine.Resolver.internalResolveModel(Resolver.kt:233)\r\n\tat org.utbot.engine.Resolver.resolveModels$utbot_framework(Resolver.kt:204)\r\n\tat org.utbot.engine.UtBotSymbolicEngine$traverseImpl$1.invokeSuspend(UtBotSymbolicEngine.kt:466)\r\n\tat kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33)\r\n\tat kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:106)\r\n\tat kotlinx.coroutines.EventLoopImplBase.processNextEvent(EventLoop.common.kt:274)\r\n\tat kotlinx.coroutines.BlockingCoroutine.joinBlocking(Builders.kt:84)\r\n\tat kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(Builders.kt:59)\r\n\tat kotlinx.coroutines.BuildersKt.runBlocking(Unknown Source)\r\n\tat kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(Builders.kt:38)\r\n\tat kotlinx.coroutines.BuildersKt.runBlocking$default(Unknown Source)\r\n\tat org.utbot.common.ConcurrencyKt.runBlockingWithCancellationPredicate(Concurrency.kt:38)\r\n\tat org.utbot.framework.plugin.api.UtBotTestCaseGenerator$generateForSeveralMethods$4.invoke(UtBotTestCaseGenerator.kt:263)\r\n\tat org.utbot.framework.plugin.api.UtBotTestCaseGenerator$generateForSeveralMethods$4.invoke(UtBotTestCaseGenerator.kt:56)\r\n\tat org.utbot.common.ConcurrencyKt.runIgnoringCancellationException(Concurrency.kt:47)\r\n\tat org.utbot.framework.plugin.api.UtBotTestCaseGenerator.generateForSeveralMethods(UtBotTestCaseGenerator.kt:262)\r\n\tat org.utbot.framework.plugin.api.UtBotTestCaseGenerator.generateForSeveralMethods$default(UtBotTestCaseGenerator.kt:249)\r\n\tat org.utbot.intellij.plugin.generator.CodeGenerator.generateForSeveralMethods(CodeGenerator.kt:53)\r\n\tat org.utbot.intellij.plugin.ui.UtTestsDialogProcessor$createTests$2$1.run(UtTestsDialogProcessor.kt:164)\r\n\tat com.intellij.openapi.progress.impl.CoreProgressManager.startTask(CoreProgressManager.java:442)\r\n\tat com.intellij.openapi.progress.impl.ProgressManagerImpl.startTask(ProgressManagerImpl.java:114)\r\n\tat com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcessWithProgressAsynchronously$5(CoreProgressManager.java:493)\r\n\tat com.intellij.openapi.progress.impl.ProgressRunner.lambda$submit$3(ProgressRunner.java:244)\r\n\tat com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(CoreProgressManager.java:189)\r\n\tat com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$12(CoreProgressManager.java:608)\r\n\tat com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:683)\r\n\tat com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(CoreProgressManager.java:639)\r\n\tat com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:607)\r\n\tat com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:60)\r\n\tat com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(CoreProgressManager.java:176)\r\n\tat com.intellij.openapi.progress.impl.ProgressRunner.lambda$submit$4(ProgressRunner.java:244)\r\n\tat java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700)\r\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)\r\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)\r\n\tat java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:668)\r\n\tat java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:665)\r\n\tat java.base/java.security.AccessController.doPrivileged(Native Method)\r\n\tat java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(Executors.java:665)\r\n\tat java.base/java.lang.Thread.run(Thread.java:829)\r\n```\r\n\r\nIt is possible that some tests are generated, but a non-empty error suite is generated as well (I encountered this case once but it seems hard to reproduce). See **Additional context** below for details.\r\n\r\n**Environment**\r\n\r\nMock strategy: *Other packages: Mockito*\r\nMock static: *No static mocking*\r\nTest framework: *JUnit5*\r\n\r\n**Additional context**\r\n\r\nI somehow managed to generate a non-empty test suite with several reported `ClassCastException` errors. It seems hard to reproduce (usually the generator just fails, so I am not sure that it is not a version mismatch from my side), but it might be useful to have this log.\r\n\r\n```\r\npublic class MapExamplesTest {\r\n    ///region Test suites for executable collections.MapExamples.transduce\r\n\r\n    ///region SUCCESSFUL EXECUTIONS for method transduce(collections.Color[], java.util.HashMap)\r\n\r\n    /**\r\n     * \u003cpre\u003e\r\n     * Test does not iterate {@code for(int i = 0; i \u003c inputs.length; i++) }, executes conditions:\r\n     *     {@code (inputs.length \u003e 0): False }\r\n     * returns from: {@code return new Color[0]; }\r\n     * \u003c/pre\u003e\r\n     */\r\n    @Test\r\n    @DisplayName(\"transduce: inputs.length \u003e 0 : False -\u003e return new Color[0]\")\r\n    public void testTransduce_InputsLengthLessOrEqualZero() {\r\n        MapExamples mapExamples = new MapExamples();\r\n        Color[] colorArray = {};\r\n        HashMap hashMap = new HashMap();\r\n\r\n        Color[] actual = mapExamples.transduce(colorArray, hashMap);\r\n\r\n        Color[] expected = {};\r\n\r\n        int expectedSize = expected.length;\r\n        assertEquals(expectedSize, actual.length);\r\n        assertTrue(deepEquals(expected, actual));\r\n    }\r\n\r\n    /**\r\n     * \u003cpre\u003e\r\n     * Test executes conditions:\r\n     *     {@code (inputs.length \u003e 0): True }\r\n     * iterates the loop {@code for(int i = 0; i \u003c inputs.length; i++) } once.\r\n     * Test then returns from: {@code return result; }\r\n     * \u003c/pre\u003e\r\n     */\r\n    @Test\r\n    @DisplayName(\"transduce: inputs.length \u003e 0 : True -\u003e return result\")\r\n    public void testTransduce_InputsLengthGreaterThanZero() throws ClassNotFoundException, Exception {\r\n        Color prevUNDEFINED = Color.UNDEFINED;\r\n        try {\r\n            Color undefined = Color.UNDEFINED;\r\n            Class colorClazz = Class.forName(\"collections.Color\");\r\n            setStaticField(colorClazz, \"UNDEFINED\", undefined);\r\n            MapExamples mapExamples = new MapExamples();\r\n            Color[] colorArray = {null};\r\n            HashMap hashMap = new HashMap();\r\n\r\n            Color[] actual = mapExamples.transduce(colorArray, hashMap);\r\n\r\n            Color[] expected = new Color[1];\r\n            Color color = Color.UNDEFINED;\r\n            expected[0] = color;\r\n\r\n            int expectedSize = expected.length;\r\n            assertEquals(expectedSize, actual.length);\r\n            assertTrue(deepEquals(expected, actual));\r\n\r\n            Color finalColorArray0 = colorArray[0];\r\n\r\n            assertNull(finalColorArray0);\r\n        } finally {\r\n            setStaticField(Color.class, \"UNDEFINED\", prevUNDEFINED);\r\n        }\r\n    }\r\n    ///endregion\r\n\r\n    ///region Errors report for transduce\r\n\r\n    public void testTransduce_errors() {\r\n        // Couldn't generate some tests. List of errors:\r\n        // \r\n        // 18 occurrences of:\r\n        /* class org.utbot.framework.plugin.api.UtEnumConstantModel cannot be cast to class org.utbot.framework.plugin.api.UtReferenceModel (org.utbot.framework.plugin.api.UtEnumConstantModel and\r\n        org.utbot.framework.plugin.api.UtReferenceModel are in unnamed module of loader com.intellij.ide.plugins.cl.PluginClassLoader @33114743) */\r\n\r\n    }\r\n    ///endregion\r\n\r\n    ///endregion\r\n\r\n    ///region Test suites for executable collections.MapExamples.trafficLightTransduce\r\n\r\n    ///region SUCCESSFUL EXECUTIONS for method trafficLightTransduce(collections.Color[])\r\n\r\n    /**\r\n     * \u003cpre\u003e\r\n     * Test calls MapExamples::transduce,\r\n     *     there it does not iterate {@code for(int i = 0; i \u003c inputs.length; i++) }, executes conditions:\r\n     *         {@code (inputs.length \u003e 0): False }\r\n     *     returns from: {@code return new Color[0]; }\r\n     *\r\n     * Test afterwards returns from: {@code return transduce(inputs, trafficLight); }\r\n     * \u003c/pre\u003e\r\n     */\r\n    @Test\r\n    @DisplayName(\"trafficLightTransduce: inputs.length \u003e 0 : False -\u003e return new Color[0]\")\r\n    public void testTrafficLightTransduce_InputsLengthLessOrEqualZero() throws ClassNotFoundException, Exception {\r\n        Color prevRED = Color.RED;\r\n        Color prevGREEN = Color.GREEN;\r\n        Color prevYELLOW = Color.YELLOW;\r\n        try {\r\n            Color red = Color.RED;\r\n            Class colorClazz = Class.forName(\"collections.Color\");\r\n            setStaticField(colorClazz, \"RED\", red);\r\n            Color green = Color.GREEN;\r\n            setStaticField(colorClazz, \"GREEN\", green);\r\n            Color yellow = Color.YELLOW;\r\n            setStaticField(colorClazz, \"YELLOW\", yellow);\r\n            MapExamples mapExamples = new MapExamples();\r\n            Color[] colorArray = {};\r\n\r\n            Color[] actual = mapExamples.trafficLightTransducer(colorArray);\r\n\r\n            Color[] expected = {};\r\n\r\n            int expectedSize = expected.length;\r\n            assertEquals(expectedSize, actual.length);\r\n            assertTrue(deepEquals(expected, actual));\r\n        } finally {\r\n            setStaticField(Color.class, \"RED\", prevRED);\r\n            setStaticField(Color.class, \"GREEN\", prevGREEN);\r\n            setStaticField(Color.class, \"YELLOW\", prevYELLOW);\r\n        }\r\n    }\r\n\r\n    /**\r\n     * \u003cpre\u003e\r\n     * Test calls MapExamples::transduce,\r\n     *     there it executes conditions:\r\n     *         {@code (inputs.length \u003e 0): True }\r\n     *     iterates the loop {@code for(int i = 0; i \u003c inputs.length; i++) } once.\r\n     *     Test then returns from: {@code return result; }\r\n     *\r\n     * Test next returns from: {@code return transduce(inputs, trafficLight); }\r\n     * \u003c/pre\u003e\r\n     */\r\n    @Test\r\n    @DisplayName(\"trafficLightTransduce: inputs.length \u003e 0 : True -\u003e return result\")\r\n    public void testTrafficLightTransduce_InputsLengthGreaterThanZero() throws ClassNotFoundException, Exception {\r\n        Color prevRED = Color.RED;\r\n        Color prevGREEN = Color.GREEN;\r\n        Color prevYELLOW = Color.YELLOW;\r\n        Color prevUNDEFINED = Color.UNDEFINED;\r\n        try {\r\n            Color red = Color.RED;\r\n            Class colorClazz = Class.forName(\"collections.Color\");\r\n            setStaticField(colorClazz, \"RED\", red);\r\n            Color green = Color.GREEN;\r\n            setStaticField(colorClazz, \"GREEN\", green);\r\n            Color yellow = Color.YELLOW;\r\n            setStaticField(colorClazz, \"YELLOW\", yellow);\r\n            Color undefined = Color.UNDEFINED;\r\n            setStaticField(colorClazz, \"UNDEFINED\", undefined);\r\n            MapExamples mapExamples = new MapExamples();\r\n            Color[] colorArray = {null};\r\n\r\n            Color[] actual = mapExamples.trafficLightTransducer(colorArray);\r\n\r\n            Color[] expected = new Color[1];\r\n            Color color = Color.UNDEFINED;\r\n            expected[0] = color;\r\n\r\n            int expectedSize = expected.length;\r\n            assertEquals(expectedSize, actual.length);\r\n            assertTrue(deepEquals(expected, actual));\r\n\r\n            Color finalColorArray0 = colorArray[0];\r\n\r\n            assertNull(finalColorArray0);\r\n        } finally {\r\n            setStaticField(Color.class, \"RED\", prevRED);\r\n            setStaticField(Color.class, \"GREEN\", prevGREEN);\r\n            setStaticField(Color.class, \"YELLOW\", prevYELLOW);\r\n            setStaticField(Color.class, \"UNDEFINED\", prevUNDEFINED);\r\n        }\r\n    }\r\n    ///endregion\r\n\r\n    ///endregion\r\n}\r\n```\r\n","author":{"url":"https://github.com/dtim","@type":"Person","name":"dtim"},"datePublished":"2022-06-17T09:29:08.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/230/UTBotJava/issues/230"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:6a19a9d8-131a-0028-8011-1f2440e735d9
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idBDD2:49CAD:11B31CA:16E4861:6990744C
html-safe-nonced6acd011767358be40167a9f396eee3a4f825bf49f6177b2a45614a9f726a958
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCREQyOjQ5Q0FEOjExQjMxQ0E6MTZFNDg2MTo2OTkwNzQ0QyIsInZpc2l0b3JfaWQiOiI4MDgxMTM0MDYzMzA0MzQwNTU2IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac2773a6424d8f46b1cf4b3dcdc499a9d695b1e09c9611a1d8c6a062a421a00c6c
hovercard-subject-tagissue:1274801551
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/UnitTestBot/UTBotJava/230/issue_layout
twitter:imagehttps://opengraph.githubassets.com/6bfe61d64c30f12cd4c3ac63a991d81749f6a2d88dc0099335ae82b924fce0c7/UnitTestBot/UTBotJava/issues/230
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/6bfe61d64c30f12cd4c3ac63a991d81749f6a2d88dc0099335ae82b924fce0c7/UnitTestBot/UTBotJava/issues/230
og:image:altDescription Processing of Enum types may result in ClassCastException, as UtEnumConstantModel is incorrectly cast to UtReferenceModel in several situations, in particular: ArrayObjectWrappers.kt: A...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamedtim
hostnamegithub.com
expected-hostnamegithub.com
None42c603b9d642c4a9065a51770f75e5e27132fef0e858607f5c9cb7e422831a7b
turbo-cache-controlno-preview
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
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release3b33c5aedc9808f45bc5fcf0b1e4404cf749dac7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/UnitTestBot/UTBotJava/issues/230#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FUnitTestBot%2FUTBotJava%2Fissues%2F230
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%2Fissues%2F230
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%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=UnitTestBot%2FUTBotJava
Reloadhttps://github.com/UnitTestBot/UTBotJava/issues/230
Reloadhttps://github.com/UnitTestBot/UTBotJava/issues/230
Reloadhttps://github.com/UnitTestBot/UTBotJava/issues/230
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
New issuehttps://github.com/login?return_to=https://github.com/UnitTestBot/UTBotJava/issues/230
New issuehttps://github.com/login?return_to=https://github.com/UnitTestBot/UTBotJava/issues/230
#611https://github.com/UnitTestBot/UTBotJava/pull/611
ClassCastException when processing UtEnumConstantModelhttps://github.com/UnitTestBot/UTBotJava/issues/230#top
#611https://github.com/UnitTestBot/UTBotJava/pull/611
https://github.com/dtim
comp-symbolic-engineIssue is related to the symbolic execution enginehttps://github.com/UnitTestBot/UTBotJava/issues?q=state%3Aopen%20label%3A%22comp-symbolic-engine%22
ctg-bugIssue is a bughttps://github.com/UnitTestBot/UTBotJava/issues?q=state%3Aopen%20label%3A%22ctg-bug%22
https://github.com/dtim
https://github.com/dtim
dtimhttps://github.com/dtim
on Jun 17, 2022https://github.com/UnitTestBot/UTBotJava/issues/230#issue-1274801551
dtimhttps://github.com/dtim
comp-symbolic-engineIssue is related to the symbolic execution enginehttps://github.com/UnitTestBot/UTBotJava/issues?q=state%3Aopen%20label%3A%22comp-symbolic-engine%22
ctg-bugIssue is a bughttps://github.com/UnitTestBot/UTBotJava/issues?q=state%3Aopen%20label%3A%22ctg-bug%22
UTBot Javahttps://github.com/orgs/UnitTestBot/projects/2
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.