Enable a few more Guava Primitives tests for J2KT

- some Base regex helpers have become available for J2KT since last iteration. Thanks cpovirk@ for pointing this out
- there was a transpiler improvement:

  `GREATEST - (short) 1` is a compile time constant in Java and can be used to
  initialize a `short` because the compiler can verify that the value is small
  enough. The straight-forward translation `GREATEST - 1.toShort()` is not a
  compile time constant in Kotlin and cannot be used to initialize a `Short`. The
  transpiler handles this now

RELNOTES=n/a
PiperOrigin-RevId: 611467476
1 file changed
tree: d67980c7dbab594a33fe757582c7d5dda9aeb8d9
  1. .github/
  2. core/
  3. extensions/
  4. refactorings/
  5. util/
  6. .gitignore
  7. CONTRIBUTING.md
  8. LICENSE
  9. overview.html
  10. pom.xml
  11. 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.