Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for other_cool (0.17 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

                bundle("other.cool", ['foo'])
                bundle("other_cool", ['bar'])
                bundle("otherCool", ['bar'])
            }
    
            then:
            ex = thrown()
            verify(ex.message, """Cannot generate dependency accessors:
    ${nameClash { noIntro().kind('dependency bundles').inConflict('other.cool', 'otherCool').getterName('getOtherCoolBundle') }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/syscall/js/js_test.go

    	}
    }
    
    func TestBool(t *testing.T) {
    	want := true
    	o := dummys.Get("someBool")
    	if got := o.Bool(); got != want {
    		t.Errorf("got %#v, want %#v", got, want)
    	}
    	dummys.Set("otherBool", want)
    	if got := dummys.Get("otherBool").Bool(); got != want {
    		t.Errorf("got %#v, want %#v", got, want)
    	}
    	if !dummys.Get("someBool").Equal(dummys.Get("someBool")) {
    		t.Errorf("same value not equal")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top