Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 260 for testslice (0.13 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.junit
    
    import junit.extensions.TestSetup
    import junit.framework.TestCase
    import junit.framework.TestSuite
    import org.gradle.api.tasks.testing.TestFailure
    import org.junit.After
    import org.junit.Before
    import org.junit.BeforeClass
    import org.junit.Ignore
    import org.junit.Test
    import org.junit.runner.Description
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java

          assertTrue(Thread.holdsLock(mutex));
          return delegate().lastKey();
        }
    
        private static final long serialVersionUID = 0;
      }
    
      public static TestSuite suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(SynchronizedNavigableMapTest.class);
        suite.addTest(
            NavigableMapTestSuiteBuilder.using(
                    new TestStringSortedMapGenerator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/ImmutableTypeToInstanceMapTest.java

    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    
    /**
     * Unit test for {@link ImmutableTypeToInstanceMap}.
     *
     * @author Ben Yu
     */
    public class ImmutableTypeToInstanceMapTest extends TestCase {
    
      @AndroidIncompatible // problem with suite builders on Android
      public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(ImmutableTypeToInstanceMapTest.class);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/attributes/TestSuiteName.java

     *
     * @since 7.4
     */
    @Incubating
    public interface TestSuiteName extends Named {
        Attribute<TestSuiteName> TEST_SUITE_NAME_ATTRIBUTE = Attribute.of("org.gradle.testsuite.name", TestSuiteName.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 23 18:49:28 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. src/net/splice_linux_test.go

    	"os"
    	"strconv"
    	"sync"
    	"syscall"
    	"testing"
    )
    
    func TestSplice(t *testing.T) {
    	t.Run("tcp-to-tcp", func(t *testing.T) { testSplice(t, "tcp", "tcp") })
    	if !testableNetwork("unixgram") {
    		t.Skip("skipping unix-to-tcp tests")
    	}
    	t.Run("unix-to-tcp", func(t *testing.T) { testSplice(t, "unix", "tcp") })
    	t.Run("tcp-to-unix", func(t *testing.T) { testSplice(t, "tcp", "unix") })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/plugins/TestingModelBasePlugin.java

            }
    
            @Mutate
            void copyTestBinariesToGlobalContainer(BinaryContainer binaries, TestSuiteContainer testSuites) {
                for (TestSuiteSpec testSuite : testSuites.values()) {
                    for (BinarySpecInternal binary : testSuite.getBinaries().withType(BinarySpecInternal.class).values()) {
                        binaries.put(binary.getProjectScopedName(), binary);
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

    @GwtIncompatible
    public class TestsForSetsInJavaUtil {
      public static Test suite() {
        return new TestsForSetsInJavaUtil().allTests();
      }
    
      public Test allTests() {
        TestSuite suite = new TestSuite("java.util Sets");
        suite.addTest(testsForEmptySet());
        suite.addTest(testsForSingletonSet());
        suite.addTest(testsForHashSet());
        suite.addTest(testsForLinkedHashSet());
        suite.addTest(testsForEnumSet());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/debug/dwarf/line_test.go

    	}
    	for i, testLine := range table {
    		if testLine.EndSequence {
    			if err := lr.SeekPC(testLine.Address, &line); err != ErrUnknownPC {
    				t.Fatalf("lr.SeekPC to %#x returned %v instead of ErrUnknownPC", testLine.Address, err)
    			}
    			continue
    		}
    
    		nextPC := table[i+1].Address
    		for pc := testLine.Address; pc < nextPC; pc++ {
    			if err := lr.SeekPC(pc, &line); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  9. src/cmd/internal/test2json/testdata/framefuzz.test

    === NAME
    === RUN   TestPrefixString
    --- PASS: TestPrefixString (0.00s)
    === NAME
    === RUN   TestInvalidAddrPortString
    --- PASS: TestInvalidAddrPortString (0.00s)
    === NAME
    === RUN   TestAsSlice
    --- PASS: TestAsSlice (0.00s)
    === NAME
    === NAME  TestInlining
        inlining_test.go:102: not in expected set, but also inlinable: "Addr.string4"
        inlining_test.go:102: not in expected set, but also inlinable: "Prefix.isZero"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/internal/JavaPluginHelper.java

    import org.gradle.api.plugins.JvmTestSuitePlugin;
    import org.gradle.api.plugins.jvm.JvmTestSuite;
    import org.gradle.jvm.component.internal.JvmSoftwareComponentInternal;
    import org.gradle.testing.base.TestSuite;
    import org.gradle.testing.base.TestingExtension;
    
    /**
     * Utility class intended for use only when the {@link org.gradle.api.plugins.JavaPlugin JavaPlugin} is applied.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 13:16:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top