Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testCheckArgument_simple_success (0.15 sec)

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

     */
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings("LenientFormatStringValidation") // Intentional for testing
    @GwtCompatible(emulated = true)
    public class PreconditionsTest extends TestCase {
      public void testCheckArgument_simple_success() {
        checkArgument(true);
      }
    
      public void testCheckArgument_simple_failure() {
        assertThrows(IllegalArgumentException.class, () -> checkArgument(false));
      }
    
    Registered: 2024-11-01 12:43
    - Last Modified: 2024-09-17 18:14
    - 19K bytes
    - Viewed (0)
Back to top