1. 40fad58 Suppress violation of MissingEqualsCall for EqualsTesterTest, given it quite legitimately fails to call #testEquals. by ghm · 6 years ago
  2. 86eabf1 Omit some unnecessary parens by cushon · 6 years ago
  3. 438d6d9 Test setValue(null) (both success and failure cases). by nikhilbarar · 6 years ago
  4. 9876a88 Remove now-unused dependency on the Checker Framework compatibility annotations by cushon · 6 years ago
  5. aaf89e0 Migrate ClassSanityTester to type annotations by cushon · 6 years ago
  6. 0a2258e Use the type annotation version of @Nullable in the Java 8 branch by cushon · 6 years ago
  7. 8845872 Continue type annotation preparations in NullPointerTester by cushon · 6 years ago
  8. d94eb93 Support type annotations in NullPointerTester by cushon · 6 years ago
  9. 49a77de Use Diamond. by martinrb · 6 years ago
  10. 7abf599 Group overloads together. by cpovirk · 6 years ago
  11. 198c384 Remove incorrect Javadoc. by cpovirk · 6 years ago
  12. 06395ae In Java 8 branch, fall back to j.u.HashMap based implementation in ImmutableMap if hash flooding appears probable. (Partially motivated by external feature requests, partially by [] by lowasser · 6 years ago
  13. d2d9a29 Avoid loading some javax.annotation classes by cushon · 6 years ago
  14. d2dad01 Annotate all public AbstractTester subclasses with @Ignore. by cpovirk · 6 years ago
  15. 10ccb81 Let our internal Android test runner run AbstractPackageSanityTestsTest's nested test class directly. by cpovirk · 6 years ago
  16. e6b9bb4 Fix bug where Multiset.elementSet.remove did not propagate changes to Multiset.size. by lowasser · 7 years ago
  17. 6f22af4 Migrate from jsr305 @Nullable to Checker Framework @NullableDecl. [] by cpovirk · 7 years ago
  18. 2d0957c Recognize @NullableDecl in NullPointerTester and friends. by cpovirk · 7 years ago
  19. e8d744e Depend on checker-compat-qual instead of checker-qual. by cpovirk · 7 years ago
  20. fd919e5 google-java-format MOST OF THE THINGS. by cpovirk · 7 years ago
  21. 8b4789c I tripped and rewrote HashBiMap in the fully compact form, with no redundant code or storage, like I had assumed was too much work. by lowasser · 7 years ago
  22. c60f24a Migrate from jsr305's @GuardedBy and @OverridingMethodsMustInvokeSuper to Error Prone's. by cpovirk · 7 years ago
  23. 6c2fe37 Migrate from jsr305's @CheckReturnValue to Error Prone's. by cpovirk · 7 years ago
  24. dc32104 Add Checker Framework to dependencies. by cpovirk · 7 years ago
  25. a1ffef8 Fully qualify some references to javax.annotation.Nullable in files that will likely soon refer to both that Nullable and the Checker Framework's. by cpovirk · 7 years ago
  26. 328481c Import Map.Entry almost everywhere. by cpovirk · 7 years ago
  27. 8959e51 Try out @OverridingMethodsMustInvokeSuper, and remove some unnecessary work in AbstractMapTester. by cpovirk · 7 years ago
  28. a26b9aa Make all "Tester" classes *end* with "Tester," and simplify our exclusions accordingly. by cpovirk · 7 years ago
  29. 4dc9df8 Remove redirectTestOutputToFile from guava-testlib configuration. by cpovirk · 7 years ago
  30. 6641f27 Expand BiMapTestSuiteBuilder's tests for setValue calls on entries (which get run on both forward and backward BiMaps). by lowasser · 7 years ago
  31. 130bead Expand BiMap test suite for forcePut operation, and fix a newly revealed bug in the HashBiMap status quo. by lowasser · 7 years ago
  32. 33f372c Fix some random Error Prone warnings. by cpovirk · 7 years ago
  33. 3794eb8 Change version number in pom files from 24.0 to HEAD(-jre/android-SNAPSHOT). by cgdecker · 7 years ago
  34. 68db9c6 Fix edge case in EnumMultiset.remove by lowasser · 7 years ago
  35. 61d2a6f Set version numbers to 24.0-jre-SNAPSHOT. by cpovirk · 7 years ago
  36. da36449 fix typo by Moriadry · 7 years ago
  37. d1dbf60 Add java.util.Optional and its derivatives (OptionalInt, OptionalLong, OptionalDouble) to ArbitraryInstances and FreshValueGenerator. by sblessing · 7 years ago
  38. f438db6 Use diamond for collect tests. by jijiang · 7 years ago
  39. 16f262f Use diamond operator for all test targets except 'collect' by jijiang · 7 years ago
  40. c428cbb catch (SomeException e) { // Expected } by cpovirk · 7 years ago
  41. 97f1b63 Multicatch! by cpovirk · 7 years ago
  42. 2eed29b On second thought, back out a few diamond operators in the mainline when they don't also work with Java 7 type inference. by cpovirk · 7 years ago
  43. 8cdd8c7 Use diamond operator for rest. by jijiang · 7 years ago
  44. 0c81386 Use diamond operator in collect by jijiang · 7 years ago
  45. d7501ab Add ImmutableSet.builderForExpectedSize. Currently, the implementation is that if and only if a size is specified up front, the builder starts generating the hash table online and deduping elements. by lowasser · 7 years ago
  46. 7e4b387 Polishing by Jonathan Bluett-Duncan · 7 years ago
  47. d37fe31 Update Guava README for 23.0 and update snapshot versions. by cgdecker · 7 years ago
  48. 934e384 Use diamond operator. by cpovirk · 7 years ago
  49. 2697048 Fixes incorrectly-ordered arguments to calls to assertEquals by andrewrice · 7 years ago
  50. f816d1a Update Guava versions to 23.0-SNAPSHOT. by cgdecker · 7 years ago
  51. e4263fc Manual fix-ups before we google-java-format. by kevinb · 7 years ago
  52. 67cbc78 Make some changes to generics so the Android branch can compile externally with -source 7 -target 7 by ronshapiro · 7 years ago
  53. fc77a95 Remove "nullness" suppressions added in CL 152864813. by cpovirk · 7 years ago
  54. 4754abf Assign otherwise ignored Future return values to local variables. This change is part of [] which will eventually make it an error to ignore the return value of methods that return Future. by clm · 7 years ago
  55. 7a68b7b Replace constants (static final CONSTANT_CASE) declaration type which use the general collection interface (e.g. List) with an immutable type (e.g. ImmutableList). by dorir · 7 years ago
  56. 36388ab Remove Spliterator characteristic SIZED after a trySplit operation in CollectSpliterators.flatMap. by lowasser · 7 years ago
  57. f24328a Add test in MultisetForEachEntryTester to test multiple copies of a single element. by lowasser · 7 years ago
  58. 8584925 make NullPointerTester.isNullable() use @CheckForNull too by Brian Worth · 7 years ago
  59. ea7b9e3 Added a test that improves test coverage of the nested class MapViewOfValuesAsSingletonSets (via asMultimap). by kvs · 7 years ago
  60. 0e29934 Make annotation dependencies non-optional. by cpovirk · 7 years ago
  61. 28148e7 Allow ignoring Constructors in NullPointerTester by Kartoffelsup · 7 years ago
  62. 8a99115 Make TearDownStack thread-safe by zorzella · 7 years ago
  63. c41557c Change NullPointerTester to work for Stream parameters. by benyu · 7 years ago
  64. 6dfbabd Support interface static methods and default methods for NullPointerTester. by benyu · 7 years ago
  65. b0b03e7 Update README for Guava 21.0 final and set snapshot version to 22.0-SNAPSHOT. by cgdecker · 7 years ago
  66. f80757d Improve EqualsTester doc by bhagwani · 8 years ago
  67. 5087f78 guava-testlib: Cover Collections.synchronizedNavigable{Map,Set}(). by tobiast · 8 years ago
  68. 3dcc44d Fix some typos in guava-[gwt,testlib,tests]/* by Sebastian Kürten · 8 years ago
  69. aa06fbd Make SloppyTearDown.logger private. by Dzmitry Lazerka · 8 years ago
  70. 73e382f Release Java 8 changes to Guava. by cgdecker · 8 years ago
  71. 93f58c7 Update README to point to 20.0 as the latest release and update version numbers to 21.0-SNAPSHOT. by cgdecker · 8 years ago
  72. e102fa4 Lint Javadoc for HTML and syntax, and fix errors. by dpb · 8 years ago
  73. 95d6225 Add JDK Deque implementations to Queue tests. by martinrb · 8 years ago
  74. 4f87e77 Suppress an intentional type mismatch. by cpovirk · 8 years ago
  75. fe8d349 Remove Iterator tester infrastructure, which has never had any real tests. by cpovirk · 8 years ago
  76. 8c03af3 Delete MapConstraints.notNull() by kak · 8 years ago
  77. c462d69 Fix imports in all Guava packages. by cgdecker · 8 years ago
  78. 00cc275 guava-testlib: Cover Collections.unmodifiableSortedMap() by tobiast · 8 years ago
  79. 0c350b5 guava-testlib: Cover checked{,Sorted}{Map,Set} by tobiast · 8 years ago
  80. ece87b0 guava-testlib: Cover Collections.unmodifiableMap by tobiast · 8 years ago
  81. 6c63cf3 Fix bug in Helpers.isEmpty. by lowasser · 8 years ago
  82. af1dabf NullPointerTester should not require @Nullable on the param of an equals() override by cushon · 8 years ago
  83. e9482f3 Disabling SelfEquals check for test by bhagwani · 8 years ago
  84. f0cfb17 Add Vector tests to guava-testlib's TestsForListsInJavaUtil by tobiast · 8 years ago
  85. 151e30f Add Hashtable to TestsForMapsInJavaUtil. by tobiast · 8 years ago
  86. 4b77bfa Delete TestGraphBuilder/TestNetworkBuilder. Remove the testing subpackage from common.graph. by jasexton · 8 years ago
  87. 62c8259 Rename addEdgeV2() to addEdge(). by jasexton · 8 years ago
  88. 7aa9178 Rename MutableGraph.addEdge(N, N) to MutableGraph.putEdge(N, N) (to indicate that Graphs do not support parallel edges and for consistency with the upcoming ValueGraph interface). Change the order of parameters in MutableNetwork.addEdge(E, N, N) to MutableNetwork.addEdge(N, N, E). by jasexton · 8 years ago
  89. 288ca09 Replace calls to deprecated Throwables.propagate() with "throwIfUnchecked(e)" (if it is possibly unchecked) and "throw new RuntimeException(e)". by kak · 8 years ago
  90. 0959427 Update imports ordering to the new java import order. by gak · 8 years ago
  91. d0ddcb8 Update imports ordering to the new java import order. by gak · 8 years ago
  92. bb7a1ce Update imports ordering to the new java import order. by gak · 8 years ago
  93. 1639880 Suppress error for comparing objects to themselves by cushon · 8 years ago
  94. 2eecfca Suppress SelfComparison error. by bhagwani · 8 years ago
  95. 2997621 Remove trailing whitespace. by cpovirk · 8 years ago
  96. c514e32 Give a more realistic usage example for EqualsTester. by cpovirk · 8 years ago
  97. 7fbd99f Change the return type of Network.incidentNodes() from Set<N> to Endpoints<N>. This also replaces the source() and target() methods on Network and moves them to Endpoints. by jasexton · 8 years ago
  98. 477f645 Suppress warning from comparing Object to itself. This was identified using Error Prone. by bhagwani · 8 years ago
  99. c1c5dae Graph.java: break out mutation- and edge-specific methods into subinterfaces: by jrtom · 8 years ago
  100. 8992cc0 Re-run google-java-format on //java[tests]/com/google/common/ (up to escape) now that some by kak · 8 years ago