Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testStaticOneArgMethodsThatShouldFail (0.21 sec)

  1. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

          } catch (AssertionFailedError unexpected) {
            fail("Should not have flagged method " + methodName);
          }
        }
      }
    
      public void testStaticOneArgMethodsThatShouldFail() throws Exception {
        for (String methodName : STATIC_ONE_ARG_METHODS_SHOULD_FAIL) {
          Method method = OneArg.class.getMethod(methodName, String.class);
          boolean foundProblem = false;
          try {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 47.9K bytes
    - Viewed (0)
Back to top