Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClassPathTest (0.24 sec)

  1. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

    /** Functional tests of {@link ClassPath}. */
    public class ClassPathTest extends TestCase {
      private static final Logger log = Logger.getLogger(ClassPathTest.class.getName());
      private static final File FILE = new File(".");
    
      public void testEquals() {
        new EqualsTester()
            .addEqualityGroup(classInfo(ClassPathTest.class), classInfo(ClassPathTest.class))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/process/internal/worker/DefaultWorkerProcessBuilderIntegrationTest.groovy

        def "test classpath does not contain nonexistent entries"() {
            given:
            file("src/test/java/ClasspathTest.java") << '''
            import org.junit.Test;
    
            import static org.junit.Assert.assertTrue;
    
            public class ClasspathTest {
                @Test
                public void test() {
                    String runtimeClasspath = System.getProperty("java.class.path");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top