Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for TESTNG (0.1 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

    import org.gradle.internal.time.Clock;
    import org.gradle.util.internal.CollectionUtils;
    import org.gradle.util.internal.GFileUtils;
    import org.testng.IMethodInstance;
    import org.testng.IMethodInterceptor;
    import org.testng.ISuite;
    import org.testng.ITestContext;
    import org.testng.ITestListener;
    import org.testng.TestNG;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.LinkedList;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/testng-groups/kotlin/src/test/java/org/gradle/testng/SimpleIntegrationTest.java

    package org.gradle.testng;
    
    import org.testng.annotations.BeforeMethod;
    import org.testng.annotations.Test;
    import org.testng.annotations.AfterMethod;
    import static org.testng.Assert.*;
    
    public class SimpleIntegrationTest{
        @Test(groups = { "integrationTests" })
        public void simpleIntegrationTest(){
            assertEquals(true, true);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 349 bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGListenerAdapterFactory.java

            Class<?> testNG5Class = tryLoadClass("org.testng.internal.IConfigurationListener");
            if (testNG5Class != null) {
                return createProxy(testNG5Class, listener);
            }
    
            throw new UnsupportedOperationException("Could not locate any of these interfaces: 'org.testng.IConfigurationListener', 'org.testng.IConfigurationListener2', 'org.testng.internal.IConfigurationListener'. Which version of TestNG are you using?");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGConfigurationListener.java

     */
    package org.gradle.api.internal.tasks.testing.testng;
    
    import org.testng.ITestResult;
    
    /**
     * Our version of TestNG's IConfigurationListener. Can be adapted to
     * org.testng.internal.IConfigurationListener (from TestNG &lt; 6.2) or
     * org.testng.IConfigurationListener2 (from TestNG &gt;= 6.2). Became
     * necessary because TestNG 6.2 changed the package name of the former
     * interface from org.testng.internal to org.testng.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

         * might be useful for advanced TestNG users who prefer the reports generated by the TestNG library. If you cannot live without some specific TestNG reporter please use {@link #listeners}
         * property. If you really want to use all default TestNG reporters (e.g. generate the old reports):
         *
         * <pre class='autoTested'>
         * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassDetector.java

            .add("Lorg/testng/annotations/Test;")
            .add("Lorg/testng/annotations/BeforeSuite;")
            .add("Lorg/testng/annotations/AfterSuite;")
            .add("Lorg/testng/annotations/BeforeTest;")
            .add("Lorg/testng/annotations/AfterTest;")
            .add("Lorg/testng/annotations/BeforeGroups;")
            .add("Lorg/testng/annotations/AfterGroups;")
            .add("Lorg/testng/annotations/Factory;")
            .build();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/testing/testng-groupbyinstances/kotlin/src/test/java/org/gradle/testng/TestFactory.java

    package org.gradle.testng;
    
    import org.testng.annotations.AfterClass;
    import org.testng.annotations.BeforeClass;
    import org.testng.annotations.DataProvider;
    import org.testng.annotations.Factory;
    import org.testng.annotations.Test;
    
    public class TestFactory {
    
        @DataProvider(name = "data")
        public static Object[][] provide() {
            return new Object[][] {
                { "data1" },
                { "data2" }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/testing/testng-groupbyinstances/groovy/src/test/java/org/gradle/testng/TestFactory.java

    package org.gradle.testng;
    
    import org.testng.annotations.AfterClass;
    import org.testng.annotations.BeforeClass;
    import org.testng.annotations.DataProvider;
    import org.testng.annotations.Factory;
    import org.testng.annotations.Test;
    
    public class TestFactory {
    
        @DataProvider(name = "data")
        public static Object[][] provide() {
            return new Object[][] {
                { "data1" },
                { "data2" }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGPreserveOrderIntegrationTest.groovy

                    onOutput { test, event -> print "\$event.message" }
                }
            """
    
            file("src/test/java/Test1.java") << """
                import org.testng.annotations.AfterClass;
                import org.testng.annotations.BeforeClass;
                import org.testng.annotations.Test;
    
                public class Test1 {
    
                    @BeforeClass
                    public void beforeClass() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorData.groovy

     */
    
    package org.gradle.api.internal.tasks.testing.testng
    
    import org.gradle.api.tasks.testing.TestFailure
    import org.testng.ITestContext
    import org.testng.ITestListener
    import org.testng.ITestResult
    import org.testng.annotations.AfterClass
    import org.testng.annotations.AfterMethod
    import org.testng.annotations.BeforeClass
    import org.testng.annotations.BeforeMethod
    import org.testng.annotations.Factory
    import org.testng.annotations.Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top