Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isInstanceOf (0.24 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          fail();
        } catch (ExecutionException expected) {
          assertThat(expected.getCause()).isInstanceOf(MyError.class);
          List<LogRecord> logged = aggregateFutureLogHandler.getStoredLogRecords();
          assertThat(logged).hasSize(1); // errors are always logged
          assertThat(logged.get(0).getThrown()).isInstanceOf(MyError.class);
        }
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          fail();
        } catch (ExecutionException expected) {
          assertThat(expected.getCause()).isInstanceOf(MyError.class);
          List<LogRecord> logged = aggregateFutureLogHandler.getStoredLogRecords();
          assertThat(logged).hasSize(1); // errors are always logged
          assertThat(logged.get(0).getThrown()).isInstanceOf(MyError.class);
        }
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    equal to another value, as tested by the Object.equals(java.lang.Object) invokedMethod? IsEqual(T) - Constructor for class org.hamcrest.core.IsEqual IsInstanceOf - Class in org.hamcrest.core Tests whether the value is an instance of a class. IsInstanceOf(Class<?>) - Constructor for class org.hamcrest.core.IsInstanceOf Creates a new instance of IsInstanceOf IsNot<T> - Class in org.hamcrest.core Calculates the logical negation of a matcher. IsNot(Matcher<T>) - Constructor for class org.hamcrest.core.IsNot...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

    import assertk.assertions.isEmpty
    import assertk.assertions.isEqualTo
    import assertk.assertions.isFalse
    import assertk.assertions.isGreaterThanOrEqualTo
    import assertk.assertions.isIn
    import assertk.assertions.isInstanceOf
    import assertk.assertions.isLessThan
    import assertk.assertions.isNotEmpty
    import assertk.assertions.isNull
    import assertk.assertions.isTrue
    import assertk.fail
    import java.io.File
    import java.io.IOException
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
Back to top