Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 254 for podtest (0.25 sec)

  1. platforms/documentation/docs/src/snippets/testing/testng-java-passing/groovy/src/test/java/org/gradle/OkTest.java

    package org.gradle;
    
    public class OkTest {
        @org.testng.annotations.Test
        public void passingTest() {
        }
    
        @org.testng.annotations.Test(expectedExceptions = RuntimeException.class)
        public void expectedFailTest() {
            throw new RuntimeException("broken");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 284 bytes
    - Viewed (0)
  2. test/fixedbugs/issue11053.dir/p_test.go

    Matthew Dempsky <******@****.***> 1648073371 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 828 bytes
    - Viewed (0)
  3. test/typeparam/issue48185a.dir/p_test.go

    Matthew Dempsky <******@****.***> 1648073371 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 277 bytes
    - Viewed (0)
  4. pkg/registry/core/pod/storage/storage.go

    	Eviction            *EvictionREST
    	Status              *StatusREST
    	EphemeralContainers *EphemeralContainersREST
    	Log                 *podrest.LogREST
    	Proxy               *podrest.ProxyREST
    	Exec                *podrest.ExecREST
    	Attach              *podrest.AttachREST
    	PortForward         *podrest.PortForwardREST
    }
    
    // REST implements a RESTStorage for pods
    type REST struct {
    	*genericregistry.Store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["FooTest.test", "FooTest.bar"]     | "FooTest"                 | "bar"                 | true
            ["FooTest.test", "FooTest.bar"]     | "FooTest"                 | "baz"                 | false
            ["FooTest.test", "FooTest.bar"]     | "Footest"                 | "test"                | false
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterSpec.groovy

    <testsuite name="com.foo.FooTest" tests="4" skipped="1" failures="1" errors="0" timestamp="2012-11-19T17:09:28" hostname="localhost" time="0.045">
      <properties/>
      <testcase name="some test" classname="com.foo.FooTest" time="0.015"/>
      <testcase name="some test two" classname="com.foo.FooTest" time="0.015"/>
      <testcase name="some failing test" classname="com.foo.FooTest" time="0.01">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_badtest.txt

    env GO111MODULE=off
    
    ! go test badtest/badexec
    ! stdout ^ok
    stdout ^FAIL\tbadtest/badexec
    
    ! go test badtest/badsyntax
    ! stdout ^ok
    stdout ^FAIL\tbadtest/badsyntax
    
    ! go test badtest/badvar
    ! stdout ^ok
    stdout ^FAIL\tbadtest/badvar
    
    ! go test notest
    ! stdout ^ok
    stderr '^notest.hello.go:6:1: syntax error: non-declaration statement outside function body' # Exercise issue #7108
    
    -- badtest/badexec/x_test.go --
    package badexec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 06 15:47:54 UTC 2020
    - 805 bytes
    - Viewed (0)
  8. pkg/kubelet/util/sliceutils/sliceutils_test.go

    		{buildPodsByCreationTime(), 2, 1},
    	}
    
    	for _, fooTest := range fooTests {
    		fooi := fooTest.pods[fooTest.i]
    		fooj := fooTest.pods[fooTest.j]
    		fooTest.pods.Swap(fooTest.i, fooTest.j)
    		if fooi.GetName() != fooTest.pods[fooTest.j].GetName() || fooj.GetName() != fooTest.pods[fooTest.i].GetName() {
    			t.Errorf("failed to swap for %v", fooTest)
    		}
    	}
    }
    
    func TestPodsByCreationTimeLess(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGStaticLoggingIntegrationTest.groovy

    """
            file("src/test/java/FooTest.java") << """
                import org.testng.annotations.*;
    
                public class FooTest {
                    private final static org.slf4j.Logger SLF4J = org.slf4j.LoggerFactory.getLogger(FooTest.class);
                    private final static java.util.logging.Logger JUL = java.util.logging.Logger.getLogger(FooTest.class.getName());
    
                    @Test public void foo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/AbstractTestNGFilteringIntegrationTest.groovy

                                'class' (name: 'FooTest')
                                'class' (name: 'BarTest')
                            }
                        }
                    }
                  }
                }
            """
    
            file("src/test/java/FooTest.java") << """
                ${testFrameworkImports}
                public class FooTest {
                    @Test public void pass() {}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top