Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testFindClassesToTest_withCorrespondingTestClass_noTestName (1.37 sec)

  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 {}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 02:48:50 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top