Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testVerify_simple_success (0.11 sec)

  1. guava-tests/test/com/google/common/base/VerifyTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /** Unit test for {@link com.google.common.base.Verify}. */
    @GwtCompatible
    @NullUnmarked
    public class VerifyTest extends TestCase {
      public void testVerify_simple_success() {
        verify(true);
      }
    
      public void testVerify_simple_failure() {
        assertThrows(VerifyException.class, () -> verify(false));
      }
    
      public void testVerify_simpleMessage_success() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 3.2K bytes
    - Viewed (0)
Back to top