Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_$it (0.22 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:testing]]
    == Testing your build logic
    
    The Gradle TestKit (a.k.a. just TestKit) is a library that aids in testing Gradle plugins and build logic generally.
    For general guidance on how to use TestKit, see the <<test_kit.adoc#test_kit,dedicated chapter>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def dependentProject = Mock(Project)
            otherTask.project >> dependentProject
    
            when:
            def td = configuration.getTaskDependencyFromProjectDependency(false, "testit")
    
            and:
            rootProject.getTasksByName("testit", true) >> otherTaskSet
    
            and:
            def configurationContainer = Mock(ConfigurationContainer)
            1 * dependentProject.configurations >> configurationContainer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. tests/query_test.go

    	if !regexp.MustCompile(`SELECT u\.\* FROM .*users.*`).MatchString(r.Statement.SQL.String()) {
    		t.Fatalf("Build Select with u.*, but got %v", r.Statement.SQL.String())
    	}
    }
    
    func TestOmit(t *testing.T) {
    	user := User{Name: "OmitUser1", Age: 20}
    	DB.Save(&user)
    
    	var result User
    	DB.Where("name = ?", user.Name).Omit("name").Find(&result)
    	if result.ID == 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
Back to top