guava/guava-testlib
cpovirk 10c64d93b7 Internal change.
PiperOrigin-RevId: 688529810
2024-10-22 06:49:09 -07:00
..
src/com/google/common Use some static imports. 2024-10-18 17:26:48 -07:00
test/com/google/common Internal change. 2024-10-22 06:49:09 -07:00
pom.xml Hard-code Java versions for plugins other than maven-surefire-plugin. 2024-07-24 11:53:31 -07:00
README.md Prepare for release 33.3.1. 2024-09-24 11:34:38 -07:00

Guava Testlib: Google Testing Libraries for Java

Guava testlib is a set of Java classes for more convenient unit testing.

Adding Guava Testlib to your build

Guava testlib's Maven group ID is com.google.guava and its artifact ID is guava-testlib.

To add a dependency on Guava testlib using Maven, use the following:

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava-testlib</artifactId>
  <version>33.3.1-jre</version>
  <scope>test</scope>
</dependency>

To add a dependency using Gradle:

dependencies {
  test 'com.google.guava:guava-testlib:33.3.1-jre'
}

IMPORTANT WARNINGS

  1. APIs marked with the @Beta annotation at the class or method level are subject to change. They can be modified in any way, or even removed, at any time. If your code is a library itself (i.e. it is used on the CLASSPATH of users outside your own control), you should not use beta APIs, unless you repackage them. If your code is a library, we strongly recommend using the Guava Beta Checker to ensure that you do not use any @Beta APIs!