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
DSpot produces sometimes uncompilable or failing test cases code.
For instance, after amplifying com.squareup.javapoet.AnnotationSpecTest (from javapoet), and renaming it by com.squareup.javapoet.AmplAnnotationSpecTest, we got two issues: char[] g() default {0, 0xCAFE, 'z', '€', 'ℕ', '"', '\'', '\t', '\n'};
is transformed into char[] g() default {0, 0xCAFE, 'z', '?', '?', '"', '\'', '\t', '\n'};
and some Literals contains the name of the class (AnnotationSpecTest), and produce assertions errors.
The text was updated successfully, but these errors were encountered:
DSpot produces sometimes uncompilable or failing test cases code.
For instance, after amplifying com.squareup.javapoet.AnnotationSpecTest (from javapoet), and renaming it by com.squareup.javapoet.AmplAnnotationSpecTest, we got two issues:
char[] g() default {0, 0xCAFE, 'z', '€', 'ℕ', '"', '\'', '\t', '\n'};
is transformed into
char[] g() default {0, 0xCAFE, 'z', '?', '?', '"', '\'', '\t', '\n'};
and some Literals contains the name of the class (AnnotationSpecTest), and produce assertions errors.
The text was updated successfully, but these errors were encountered: