aboutsummaryrefslogtreecommitdiff
path: root/value/src/test
AgeCommit message (Expand)Author
2021-03-19Restructure PropertyBuilderClassifier to use more general types.Éamonn McManus
2021-03-16Add a simple ad-hoc indentation engine to the reformatting pass.Éamonn McManus
2021-03-08Add spacing after the simple name when generating a `@ToPrettyString` represe...Ron Shapiro
2021-03-07Implement `@ToPrettyString` to generate pretty `String` versions for AutoValu...Ron Shapiro
2021-01-28Copy annotations from type parameters of an `@AutoValue` class to the subclas...Éamonn McManus
2021-01-21Improve the error message for a missing `build()` method.Éamonn McManus
2020-11-16The methods returned by `BuilderContext.buildMethod()` and `.toBuilderMethods...Éamonn McManus
2020-10-28Update versions of auto-service and compile-testing, and fix a bug with Simpl...Éamonn McManus
2020-09-16Compute a `serialVersionUID` for `@AutoAnnotation` implementations based on t...Éamonn McManus
2020-09-14Make `@AutoAnnotation` instances serializable.Éamonn McManus
2020-07-28Fully Qualify @Override to avoid name conflictskpayson
2020-05-20Drop unnecessary parentheses in AutoAnnotation `equals` and `hashCode` methods.emcmanus
2020-05-20Defer processing in `@AutoValue` classes if any abstract method has an undefi...emcmanus
2020-05-08Have SerializableAutoValueExtension declare that it is "isolating".emcmanus
2020-04-28Upgrade AutoValue tests to more recent compile-testing APIs.emcmanus
2020-04-27Generalize the logic for determining if we can make a BarBuilder out of a Bar.emcmanus
2020-04-10Warn if an @AutoValue.Builder class contains a static builder method.emcmanus
2020-04-10Fix the SerializableAutoValueExtension from crashing if an AutoValue contains...alvinlao
2020-04-10Release the SerializableAutoValue extension.alvinlao
2020-02-11If AutoValue detects an error, don't invoke extensions or generate code.emcmanus
2020-02-10Add type parameters to void AutoOneOf values.grahamrogers
2020-01-13Make it an error if a setter has a @Nullable parameter when the property bein...emcmanus
2020-01-02When checking builder setter parameters, use the final type. The final type i...emcmanus
2019-10-09Add a way for extensions to retrieve the name of the final AutoValue_Foo class.emcmanus
2019-09-30Add an API to allow extensions to find out about builders.emcmanus
2019-09-10Change a couple of test extensions to use the new propertyTypes() method. Thi...emcmanus
2019-09-10Add a propertyTypes() method to AutoValueExtension.Context, to allow extensio...emcmanus
2019-08-19Add @SuppressWarnings to a test that deliberately calls TypeMirror.equals.bhagwani
2019-08-19Rewrite AutoValue's Reformatter so it only does one pass instead of three. Th...emcmanus
2019-08-19Include type annotations in bounds of type parameter declarations. For exampl...emcmanus
2019-08-19Handle inner classes correctly when the outer class has a type parameter.emcmanus
2019-08-14Use the short form of annotations in generated code. For example, instead of ...emcmanus
2019-06-06Update to Truth 0.45, and address deprecations.cpovirk
2019-05-27Improve the logic for setter type conversion. Setter type conversion is when ...emcmanus
2019-05-27Allow @AutoOneOf properties to be void.emcmanus
2019-05-08Instead of calling Subject.actual(), store the actual value in a field, and r...cpovirk
2019-05-07Migrate from assertThat(foo).named("foo") to assertWithMessage("foo").that(foo).cpovirk
2019-05-05Migrate from is(Not)SameAs to is(Not)SameInstanceAs.cpovirk
2019-05-05Migrate from isNotSameAs to isNotSameInstanceAs.cpovirk
2019-04-29Migrate from assertThat(foo).named("foo") to assertWithMessage("foo").that(foo).cpovirk
2019-04-29Use the newer compile-testing API in AutoAnnotationCompilationTest.emcmanus
2019-04-29Update copyrights to say Google LLC instead of Google Inc.emcmanus
2019-04-10Ensure that setUseCaches(false) is called when reading extensions.emcmanus
2019-04-04Output the full exception trace if ServiceLoader fails when looking for AutoV...emcmanus
2019-04-03Expand the exceptions covered by the workaround for a JDK8 jar bug.emcmanus
2019-04-03Support @CopyAnnotations in classes generated by MemoizeExtension.stabai
2019-03-22Refactor exception-message assertions to use ThrowableSubject.hasMessageThat(...diamondm
2019-03-22Further improve the logic for checking setter types.emcmanus
2019-03-12Improve the logic for checking setter parameter types against getter return t...emcmanus
2019-02-21Check for instance equality before attempting to check for the @Memoized hash...ronshapiro