Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,761 for testLang (0.23 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmProjectInitDescriptor.java

                    break;
                case TESTNG:
                    buildScriptBuilder
                        .testImplementationDependency(
                            "Use TestNG framework, also requires calling test.useTestNG() below",
                            BuildInitDependency.of("org.testng:testng", libraryVersionProvider.getVersion("testng")))
                        .taskMethodInvocation(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/ConsoleTestNGTestWorkerFunctionalTest.groovy

    class ConsoleTestNGTestWorkerFunctionalTest extends AbstractConsoleJvmTestWorkerFunctionalTest {
    
        @Override
        String testAnnotationClass() {
            'org.testng.annotations.Test'
        }
    
        @Override
        String testFrameworkConfiguration() {
            'testing.suites.test.useTestNG()'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 964 bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/AbstractTestNGFilteringIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    
    package org.gradle.testing.testng
    
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.testing.AbstractTestFilteringIntegrationTest
    import spock.lang.Issue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/ConsoleTestNGUnsupportedTestWorkerFunctionalTest.groovy

            server.start()
        }
    
        def "omits parallel test execution if TestNG version does not emit class listener events"() {
            given:
            buildFile << """
                plugins {
                    id 'java-library'
                }
    
                ${mavenCentralRepository()}
    
                testing.suites.test {
                    useTestNG('$TESTNG_VERSION')
                    targets.test.testTask.configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGJdkNavigationIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.testing.testng
    
    import org.gradle.integtests.fixtures.AbstractSampleIntegrationTest
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.integtests.fixtures.TestResources
    import org.junit.Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    .Applying the JVM Test Suite plugin
    ====
    include::sample[dir="snippets/testing/test-suite-plugin/kotlin",files="build.gradle.kts[tags=apply-jvm-test-suite]"]
    include::sample[dir="snippets/testing/test-suite-plugin/groovy",files="build.gradle[tags=apply-jvm-test-suite]"]
    ====
    
    The plugins adds the following objects to the project:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpoint_builder_test.go

    				label.TopologyNetwork.Name: "mynetwork",
    			},
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			pod := v1.Pod{}
    			pod.Name = "testpod"
    			pod.Namespace = "testns"
    			pod.Spec.ServiceAccountName = "testsan"
    			pod.Labels = c.podLabels
    			pod.Spec.NodeName = "fake"
    			// All should get this
    			c.expected[labelutil.LabelHostname] = "fake"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGSpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.testng;
    
    import org.gradle.api.internal.tasks.testing.filter.TestFilterSpec;
    
    import java.io.Serializable;
    import java.util.Set;
    
    public class TestNGSpec implements Serializable {
        private static final long serialVersionUID = 1;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_test.go

    				f()
    			}
    			done <- true
    		}()
    	}
    	for i := 0; i < N; i++ {
    		<-done
    	}
    }
    
    func TestXadduintptr(t *testing.T) {
    	N := 20
    	iter := 100000
    	if testing.Short() {
    		N = 10
    		iter = 10000
    	}
    	inc := uintptr(100)
    	total := uintptr(0)
    	runParallel(N, iter, func() {
    		atomic.Xadduintptr(&total, inc)
    	})
    	if want := uintptr(N*iter) * inc; want != total {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractIncrementalTestIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.testing
    
    import org.gradle.integtests.fixtures.JUnitXmlTestExecutionResult
    import org.gradle.testing.fixture.AbstractTestingMultiVersionIntegrationTest
    
    abstract class AbstractIncrementalTestIntegrationTest extends AbstractTestingMultiVersionIntegrationTest {
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top