Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for epstest (0.13 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    				epstest.MakeEndpointPort("", 80),
    			}),
    		epstest.MakeEndpoints("named",
    			[]api.EndpointAddress{
    				epstest.MakeEndpointAddress("1.2.3.6", "named"),
    			},
    			[]api.EndpointPort{
    				epstest.MakeEndpointPort("p", 80),
    				epstest.MakeEndpointPort("q", 81),
    			}),
    		epstest.MakeEndpoints("no-endpoints", nil, nil), // to prove this does not get chosen
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinapplication/junitjupiter/AppTest.kt.template

    ${fileComment.multilineComment}${packageDecl.statement}
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.Assertions.assertNotNull
    
    class AppTest {
        @Test
        fun appHasAGreeting() {
            val classUnderTest = App()
            assertNotNull(classUnderTest.greeting, "app should have a greeting")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 06:44:27 UTC 2024
    - 319 bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/SetsTest.java

    /**
     * Unit test for {@code Sets}.
     *
     * @author Kevin Bourrillion
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public class SetsTest extends TestCase {
    
      private static final IteratorTester.KnownOrder KNOWN_ORDER =
          IteratorTester.KnownOrder.KNOWN_ORDER;
    
      private static final Collection<Integer> EMPTY_COLLECTION = Arrays.<Integer>asList();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/MapsTest.java

    /**
     * Unit test for {@code Maps}.
     *
     * @author Kevin Bourrillion
     * @author Mike Bostock
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public class MapsTest extends TestCase {
    
      private static final Comparator<Integer> SOME_COMPARATOR = Collections.reverseOrder();
    
      public void testHashMap() {
        HashMap<Integer, Integer> map = Maps.newHashMap();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/SetsTest.java

    /**
     * Unit test for {@code Sets}.
     *
     * @author Kevin Bourrillion
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public class SetsTest extends TestCase {
    
      private static final IteratorTester.KnownOrder KNOWN_ORDER =
          IteratorTester.KnownOrder.KNOWN_ORDER;
    
      private static final Collection<Integer> EMPTY_COLLECTION = Arrays.<Integer>asList();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  6. pkg/util/net/ip_test.go

    Hemendra Teli <******@****.***> 1714574500 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/go/build/deps_test.go

    	< net/rpc
    	< net/rpc/jsonrpc;
    
    	# System Information
    	bufio, bytes, internal/cpu, io, os, strings, sync
    	< internal/sysinfo;
    
    	# Test-only
    	log
    	< testing/iotest
    	< testing/fstest;
    
    	FMT, flag, math/rand
    	< testing/quick;
    
    	FMT, DEBUG, flag, runtime/trace, internal/sysinfo, math/rand
    	< testing;
    
    	log/slog, testing
    	< testing/slogtest;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyApplicationInitIntegrationTest.groovy

            subprojectDir.file("src/test/groovy").assertHasDescendants("my/app/AppTest.groovy")
    
            and:
            commonJvmFilesGenerated(scriptDsl)
    
            when:
            run("build")
    
            then:
            assertTestPassed("my.app.AppTest", "application has a greeting")
    
            when:
            run("run")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/runtime/runtime_test.go

    		{
    			name: "invalid: new runtime service fails",
    			prepare: func(mock *fakeImpl) {
    				mock.NewRemoteRuntimeServiceReturns(nil, errTest)
    			},
    			shouldError: true,
    		},
    		{
    			name: "invalid: new image service fails",
    			prepare: func(mock *fakeImpl) {
    				mock.NewRemoteImageServiceReturns(nil, errTest)
    			},
    			shouldError: true,
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaApplicationInitIntegrationTest.groovy

        public static final String SAMPLE_APP_CLASS = "org/example/App.java"
        public static final String SAMPLE_APP_TEST_CLASS = "org/example/AppTest.java"
        public static final String SAMPLE_APP_SPOCK_TEST_CLASS = "org/example/AppTest.groovy"
    
        @Override
        String subprojectName() { 'app' }
    
        def "defaults to Kotlin build scripts"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top