Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for epstest (0.32 sec)

  1. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/groovy/AppTest.groovy.template

    ${fileComment.multilineComment}${packageDecl.statement}
    import spock.lang.Specification
    
    class AppTest extends Specification {
        def "application has a greeting"() {
            setup:
            def app = new App()
    
            when:
            def result = app.greeting
    
            then:
            result != null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 306 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. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/junitjupiter/AppTest.java.template

    ${fileComment.multilineComment}${packageDecl.javaStatement}
    import org.junit.jupiter.api.Test;
    import static org.junit.jupiter.api.Assertions.*;
    
    class AppTest {
        @Test void appHasAGreeting() {
            App classUnderTest = new App();
            assertNotNull(classUnderTest.getGreeting(), "app should have a greeting");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 328 bytes
    - Viewed (0)
  4. samples/multicluster/gen-eastwest-gateway.sh

        echo "Must specify either --single-cluster or --network."
        exit 1
      fi
    fi
    
    # base
    IOP=$(cat <<EOF
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: eastwest
    spec:
      revision: "${REVISION}"
      profile: empty
      components:
        ingressGateways:
          - name: istio-eastwestgateway
            label:
              istio: eastwestgateway
              app: istio-eastwestgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 04 02:52:25 UTC 2021
    - 3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_vendor_embed.txt

    package dep
    
    import _ "embed"
    
    //go:embed unbuilt.go
    var unbuilt string
    
    //go:embed dep_test.go
    var depTest string
    -- embed_unbuilt/dep/unbuilt.go --
    // +build ignore
    
    package dep
    -- embed_unbuilt/dep/not_embedded_unbuilt.go --
    // +build ignore
    
    package dep
    -- embed_unbuilt/dep/dep_test.go --
    package dep
    -- embed_unbuilt/dep/not_embedded_dep_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. pilot/pkg/util/network/ip_test.go

    John Howard <******@****.***> 1670516655 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:15 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  7. 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)
  8. pilot/pkg/config/kube/gateway/testdata/eastwest.yaml

    Frank Budinsky <******@****.***> 1697669019 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/test/dep_test.go

    Bryan C. Mills <******@****.***> 1668524221 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 853 bytes
    - Viewed (0)
Back to top