Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for test716 (2.89 sec)

  1. android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

      }
    
      // https://github.com/google/guava/issues/705
      public void test705() {
        assertEquals("../b", simplifyPath("x/../../b"));
        assertEquals("b", simplifyPath("x/../b"));
      }
    
      // https://github.com/google/guava/issues/716
      public void test716() {
        assertEquals("b", simplifyPath("./b"));
        assertEquals("b", simplifyPath("./b/."));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

      }
    
      // https://github.com/google/guava/issues/705
      public void test705() {
        assertEquals("../b", simplifyPath("x/../../b"));
        assertEquals("b", simplifyPath("x/../b"));
      }
    
      // https://github.com/google/guava/issues/716
      public void test716() {
        assertEquals("b", simplifyPath("./b"));
        assertEquals("b", simplifyPath("./b/."));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            ProfileActivation activation;
    
            activation = new ProfileActivation();
            performProfileActivation(parser.parse(options, new String[] {"-P", "test1,+test2,?test3,+?test4"}), activation);
            assertThat(activation.getRequiredActiveProfileIds(), containsInAnyOrder("test1", "test2"));
            assertThat(activation.getOptionalActiveProfileIds(), containsInAnyOrder("test3", "test4"));
    
            activation = new ProfileActivation();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. cmd/object-api-multipart_test.go

    		// Valid bucket names, but they do not exist (Test number 5-7).
    		{"volatile-bucket-1", "test1", "", 0, 0, ListPartsInfo{}, BucketNotFound{Bucket: "volatile-bucket-1"}, false},
    		{"volatile-bucket-2", "test1", "", 0, 0, ListPartsInfo{}, BucketNotFound{Bucket: "volatile-bucket-2"}, false},
    		{"volatile-bucket-3", "test1", "", 0, 0, ListPartsInfo{}, BucketNotFound{Bucket: "volatile-bucket-3"}, false},
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 09:42:21 UTC 2024
    - 88.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java

            .inOrder();
      }
    
      public void testOf5() {
        assertThat(ImmutableDoubleArray.of(0, 1, 3, 6, 10).asList())
            .containsExactly(0.0, 1.0, 3.0, 6.0, 10.0)
            .inOrder();
      }
    
      public void testOf6() {
        assertThat(ImmutableDoubleArray.of(0, 1, 3, 6, 10, 15).asList())
            .containsExactly(0.0, 1.0, 3.0, 6.0, 10.0, 15.0)
            .inOrder();
      }
    
      public void testOf7() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/ImmutableIntArrayTest.java

      }
    
      public void testOf5() {
        assertThat(ImmutableIntArray.of(0, 1, 3, 6, 10).asList())
            .containsExactly(0, 1, 3, 6, 10)
            .inOrder();
      }
    
      public void testOf6() {
        assertThat(ImmutableIntArray.of(0, 1, 3, 6, 10, 15).asList())
            .containsExactly(0, 1, 3, 6, 10, 15)
            .inOrder();
      }
    
      public void testOf7() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java

            .inOrder();
      }
    
      public void testOf5() {
        assertThat(ImmutableDoubleArray.of(0, 1, 3, 6, 10).asList())
            .containsExactly(0.0, 1.0, 3.0, 6.0, 10.0)
            .inOrder();
      }
    
      public void testOf6() {
        assertThat(ImmutableDoubleArray.of(0, 1, 3, 6, 10, 15).asList())
            .containsExactly(0.0, 1.0, 3.0, 6.0, 10.0, 15.0)
            .inOrder();
      }
    
      public void testOf7() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. src/bufio/bufio_test.go

    // on any ReadFrom. See golang.org/issue/35194.
    func TestWriterReadFromMustReturnUnderlyingError(t *testing.T) {
    	var wr = NewWriter(writeErrorOnlyWriter{})
    	s := "test1"
    	wantBuffered := len(s)
    	if _, err := wr.WriteString(s); err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if err := wr.Flush(); err == nil {
    		t.Error("expected flush error, got nil")
    	}
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Nov 01 21:52:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top