Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for PrivateClassWithPrivateConstructor (0.17 seconds)

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

      @SuppressWarnings("unused") // used by reflection
      private static class PrivateClassWithPrivateConstructor {
        private PrivateClassWithPrivateConstructor(@Nullable Integer argument) {}
      }
    
      public void testPrivateClass() {
        NullPointerTester tester = new NullPointerTester();
        for (Constructor<?> constructor :
            PrivateClassWithPrivateConstructor.class.getDeclaredConstructors()) {
          tester.testConstructor(constructor);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 47.9K bytes
    - Click Count (0)
Back to Top