- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 1,199 for expectGet (0.06 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java
- try {
- entrySet.add((Entry<K, V>) entryToAdd);
- fail("Expected UnsupportedOperationException or NullPointerException.");
- } catch (UnsupportedOperationException | NullPointerException e) {
- // Expected.
- }
- assertInvariants(map);
- try {
- entrySet.addAll(singleton((Entry<K, V>) entryToAdd));
- fail("Expected UnsupportedOperationException or NullPointerException.");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 43.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/AbstractByteHasherTest.java
- TestHasher hasher = new TestHasher(); // byte order insignificant here
- byte[] expected = {1, 2, 3, 4, 5, 6, 7, 8};
- hasher.putByte((byte) 1);
- hasher.putBytes(new byte[] {2, 3, 4, 5, 6});
- hasher.putByte((byte) 7);
- hasher.putBytes(new byte[] {});
- hasher.putBytes(new byte[] {8});
- hasher.assertBytes(expected);
- }
- public void testShort() {
- TestHasher hasher = new TestHasher();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 3.8K bytes - Viewed (0) -
tensorflow/c/eager/c_api_debug_test.cc
- CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
- ASSERT_EQ(2, TFE_TensorDebugInfoOnDeviceNumDims(debug_info));
- // Shape is the same for CPU tensors.
- EXPECT_EQ(3, TFE_TensorDebugInfoOnDeviceDim(debug_info, 0));
- EXPECT_EQ(2, TFE_TensorDebugInfoOnDeviceDim(debug_info, 1));
- TFE_DeleteTensorDebugInfo(debug_info);
- TFE_DeleteTensorHandle(h);
- TFE_DeleteContext(ctx);
- TF_DeleteStatus(status);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Apr 06 22:10:09 UTC 2020 - 2.3K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CallKotlinTest.kt
- assertFailsWith<IOException> {
- client.newCall(request).execute()
- }.also { expected ->
- expected.assertSuppressed {
- val suppressed = it.single()
- assertThat(suppressed).isInstanceOf(IOException::class.java)
- assertThat(suppressed).isNotSameAs(expected)
- }
- }
- }
- /** Confirm suppressed exceptions that occur after connecting are returned. */
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 8.4K bytes - Viewed (0) -
tests/embedded_struct_test.go
- t.Errorf("Expected to get Author name %v but got: %v", NewPost.Author.Name, hnPost.Author.Name)
- }
- if !reflect.DeepEqual(NewPost.Author.Content, hnPost.Author.Content) {
- t.Errorf("Expected to get Author content %v but got: %v", NewPost.Author.Content, hnPost.Author.Content)
- }
- if hnPost.Author.ContentPtr != nil {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed May 08 04:07:58 UTC 2024 - 7.3K bytes - Viewed (0) -
internal/http/listener_test.go
- if !expectedListenErr {
- if listenErrs[i] != nil {
- t.Fatalf("Test %d:, listenErrs[%d] error: expected = <nil>, got = %v", testIdx+1, i, listenErrs[i])
- }
- } else if listenErrs[i] == nil {
- t.Fatalf("Test %d: listenErrs[%d]: expected = %v, got = <nil>", testIdx+1, i, expectedListenErr)
- }
- }
- if listener != nil {
- listener.Close()
- }
- }
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jun 10 17:41:02 UTC 2024 - 11.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/transform/TransformationManagerTest.java
- "We expected the release transformation and got " + tms.get(0));
- assertTrue(
- tms.get(1) instanceof LatestArtifactTransformation,
- "We expected the latest transformation and got " + tms.get(1));
- assertTrue(
- tms.get(2) instanceof SnapshotTransformation,
- "We expected the snapshot transformation and got " + tms.get(2));
- }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java
- ExecutionError expected = assertThrows(ExecutionError.class, () -> cache.get(new Object()));
- assertThat(expected).hasCauseThat().isSameInstanceAs(e);
- stats = cache.stats();
- assertEquals(1, stats.missCount());
- assertEquals(0, stats.loadSuccessCount());
- assertEquals(1, stats.loadExceptionCount());
- assertEquals(0, stats.hitCount());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 86.3K bytes - Viewed (0) -
okhttp-testing-support/src/test/kotlin/okhttp3/OkHttpClientTestRuleTest.kt
- }
- }
- thread.start()
- thread.join()
- assertFailsWith<AssertionError> {
- testRule.afterEach(extensionContext)
- }.also { expected ->
- assertThat(expected).hasMessage("uncaught exception thrown during test")
- assertThat(expected.cause!!).hasMessage("boom!")
- }
- }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.7K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/MultisetSetCountConditionallyTester.java
- public class MultisetSetCountConditionallyTester<E> extends AbstractMultisetSetCountTester<E> {
- @Override
- void setCountCheckReturnValue(E element, int count) {
- assertTrue(
- "setCount() with the correct expected present count should return true",
- setCount(element, count));
- }
- @Override
- void setCountNoCheckReturnValue(E element, int count) {
- setCount(element, count);
- }
- @CanIgnoreReturnValue
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 20:12:35 UTC 2024 - 3.9K bytes - Viewed (0)