Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for someMoreTest1 (0.26 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterCategoriesOrTagsCoverageIntegrationTest.groovy

                    @ExtendWith(Locales.class)
                    @Tag("TagA")
                    public class SomeMoreLocaleTests {
                        @TestTemplate
                        public void someMoreTest1(Locale locale) {
                            System.out.println("Locale in use: " + locale);
                        }
    
                        @TestTemplate
                        public void someMoreTest2(Locale locale) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

                    @RunWith(Locales.class)
                    @Category(CategoryA.class)
                    public class SomeMoreLocaleTests {
                        @Test
                        public void someMoreTest1() {
                            System.out.println("Locale in use: " + LocaleHolder.get());
                        }
    
                        @Test
                        public void someMoreTest2() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top