Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testFindClassesToTest_withCorrespondingTestClass_noTestName (0.31 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 11 21:37:55 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  2. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 11 21:37:55 UTC 2019
    - 5.3K bytes
    - Viewed (0)
Back to top