Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,161 for cunit (1.3 sec)

  1. Makefile.core.mk

    # This target sets JUNIT_REPORT to the location of the  go-junit-report binary.
    # This binary is provided in the build container. If it is not found, the build
    # container is not being used, so ask the user to install go-junit-report.
    JUNIT_REPORT := $(shell which go-junit-report 2> /dev/null || echo "${ISTIO_BIN}/go-junit-report")
    
    ${ISTIO_BIN}/go-junit-report:
    	@echo "go-junit-report was not found in the build environment."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                public class MyTest {
                    @org.junit.Test public void foo() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
                    }
                    @org.junit.Test public void foo2() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
                    }
                    @org.junit.Test public void foo3() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.Lists;
    import java.util.Iterator;
    import java.util.List;
    import java.util.NoSuchElementException;
    import junit.framework.TestCase;
    
    /**
     * Unit test for IteratorTester.
     *
     * @author Mick Killianey
     */
    @GwtCompatible
    @SuppressWarnings("serial") // No serialization is used in this test
    public class IteratorTesterTest extends TestCase {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

    import org.gradle.kotlin.dsl.fixtures.testRuntimeClassPath
    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.CoreMatchers.nullValue
    import org.hamcrest.Matcher
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    import kotlin.reflect.KClass
    
    
    class TaskContainerDslIntegrationTest : AbstractKotlinIntegrationTest() {
    
        private
        val dslTestFixture: DslTestFixture by lazy {
            DslTestFixture(projectRoot)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r85/TestFailureProgressEventCrossVersionTest.groovy

            enableStdoutProxying = true
        }
    
        def "Wrapped assertion errors are emitted as test failure events using JUnit 4"() {
            given:
            setupJUnit4()
            file('src/test/java/org/gradle/JUnitTest.java') << '''
                package org.gradle;
    
                import org.junit.Test;
    
                public class JUnitTest {
                    @Test
                    public void test() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 17:52:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/CrossVersionTestEngine.java

    import org.gradle.util.GradleVersion;
    import org.junit.platform.engine.ConfigurationParameters;
    import org.junit.platform.engine.DiscoveryFilter;
    import org.junit.platform.engine.DiscoverySelector;
    import org.junit.platform.engine.EngineDiscoveryListener;
    import org.junit.platform.engine.EngineDiscoveryRequest;
    import org.junit.platform.engine.ExecutionRequest;
    import org.junit.platform.engine.TestDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

      private static Thread acquireFor(final Lock lock, final long duration, final TimeUnit unit) {
        final CountDownLatch latch = new CountDownLatch(1);
        Thread thread =
            new Thread() {
              @Override
              public void run() {
                lock.lock();
                latch.countDown();
                try {
                  Thread.sleep(unit.toMillis(duration));
                } catch (InterruptedException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/base/JoinerTest.java

    import java.util.Arrays;
    import java.util.Iterator;
    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.Set;
    import junit.framework.AssertionFailedError;
    import junit.framework.TestCase;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit test for {@link Joiner}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompilerTest.kt

    import org.gradle.kotlin.dsl.fixtures.assertStandardOutputOf
    import org.gradle.plugin.management.internal.PluginRequests
    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    import org.mockito.InOrder
    import java.util.Arrays.fill
    
    
    class ResidualProgramCompilerTest : TestWithCompiler() {
    
        @Test
        fun `Static(CloseTargetScope)`() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/FileAttributesTest.java

    import java.util.Date;
    import java.util.Map;
    
    import org.junit.Assert;
    import org.junit.Assume;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.junit.runners.Parameterized;
    import org.junit.runners.Parameterized.Parameters;
    
    import jcifs.CIFSException;
    import jcifs.SmbConstants;
    import jcifs.SmbResource;
    import jcifs.smb.NtStatus;
    import jcifs.smb.SmbException;
    import jcifs.smb.SmbFile;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top