Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testFindClassesToTest_withCorrespondingTestClass_noTestName (0.25 seconds)

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

        assertThat(findClassesToTest(classes, "testPublic")).isEmpty();
        assertThat(findClassesToTest(classes, "testNotThere", "testPublic")).isEmpty();
      }
    
      public void testFindClassesToTest_withCorrespondingTestClass_noTestName() {
        assertThat(findClassesToTest(ImmutableList.of(Foo.class, FooTest.class)))
            .containsExactly(Foo.class);
      }
    
      static class EmptyTestCase {}
    
      static class EmptyTest {}
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Dec 28 02:48:50 GMT 2024
    - 5.4K bytes
    - Click Count (0)
Back to Top