Remove deprecated containsAllOf+containsAllIn and isOrdered+isStrictlyOrdered.

(Also, internally remove isSameAs+isNotSameAs, which had already been removed externally.)

Relnotes:
  Removed deprecated `containsAllOf` and `containsAllIn`. Use `containsAtLeast` and `containsAtLeastElementsIn`, which are equivalent.
  Removed deprecated `isOrdered` and `isStrictlyOrdered`. Use `isInOrder` and `isInStrictOrder`, which are equivalent.

[]

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=252840812
23 files changed
tree: a6bc8e01d9a016387f5a4934739729826e1256c9
  1. core/
  2. extensions/
  3. refactorings/
  4. util/
  5. .gitignore
  6. .travis.yml
  7. CONTRIBUTING.md
  8. LICENSE
  9. pom.xml
  10. README.md
README.md

Main Site Build Status Maven Release Stackoverflow

What is Truth?

Truth makes your test assertions and failure messages more readable. Similar to AssertJ, it natively supports many JDK and Guava types, and it is extensible to others.

Truth is owned and maintained by the Guava team. It is used in the majority of the tests in Google’s own codebase.

Read more at the main website.