Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for heyJoe (0.07 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r10rc1/PassingCommandLineArgumentsCrossVersionSpec.groovy

    """
    
            when:
            GradleProject project = withConnection { ProjectConnection it ->
                it.model(GradleProject).withArguments('-PtheDescription=heyJoe').get()
            }
    
            then:
            project.description == 'heyJoe'
        }
    
        def "understands system properties"() {
            given:
            file("build.gradle") << """
            task printProperty {
                doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    	got := err.Error()
    	if got != want {
    		t.Errorf("expected\n%q\ngot\n%q", want, got)
    	}
    }
    
    type CustomError struct{}
    
    func (*CustomError) Error() string { return "heyo !" }
    
    // Check that a custom error can be returned.
    func TestExecError_CustomError(t *testing.T) {
    	failingFunc := func() (string, error) {
    		return "", &CustomError{}
    	}
    	tmpl := Must(New("top").Funcs(FuncMap{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top