- Notifications
You must be signed in to change notification settings - Fork 45
Closed
Labels
comp-codegenIssue is related to code generatorIssue is related to code generatorpriority-top-focusTop priority chosen by dev teamTop priority chosen by dev team
Description
Consider a test, generated for FloatExamples.primitiveToWrapper
@Test public void testPrimitiveToWrapper_ALessThanZero() throws Throwable { FloatWrapper floatWrapper = new FloatWrapper(); Float actual = floatWrapper.primitiveToWrapper(-1.4E-45f); Float expected = 1.4E-45f; assertEquals(((Float) expected), ((Float) actual), 1.0E-6f); }Assert statement may be simplified to
assertEquals(expected, actual, 1.0E-6f);Metadata
Metadata
Assignees
Labels
comp-codegenIssue is related to code generatorIssue is related to code generatorpriority-top-focusTop priority chosen by dev teamTop priority chosen by dev team
Type
Projects
Status
Done