Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for helperMethod (0.2 sec)

  1. maven-core/src/test/resources/projects/transform/jar/after.pom

      <modelVersion>4.0.0</modelVersion>
      <groupId>io.github.helpermethod</groupId>
      <artifactId>zip-forge</artifactId>
      <version>1.0.1</version>
      <name>zip-forge</name>
      <description>A tiny, formatter-friendly Java DSL for creating ZIP files.</description>
      <url>https://github.com/helpermethod/zip-forge</url>
      <licenses>
        <license>
          <name>The Apache License, Version 2.0</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/transform/jar/before.pom

        <modelVersion>4.0.0</modelVersion>
        <groupId>io.github.helpermethod</groupId>
        <artifactId>zip-forge</artifactId>
        <version>1.0.1</version>
        <name>zip-forge</name>
        <description>A tiny, formatter-friendly Java DSL for creating ZIP files.</description>
        <url>https://github.com/helpermethod/zip-forge</url>
        <licenses>
            <license>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4CategoriesNotSupportedIntegrationTest.groovy

                import org.junit.Test;
    
                public class SomeTest {
                    @Test
                    public void ok() {
                    }
    
                    public void helpermethod() {
                    }
                }
            """.stripIndent()
            buildFile << """
                apply plugin: "java"
    
                ${mavenCentralRepository()}
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestClassDetectionIntegrationTest.groovy

                }
                test.${configureTestFramework}
            """.stripIndent()
    
            and:
            file("src/test/java/TestHelper.java") << """
                public class TestHelper {
                    public void helperMethod(String foo, int bar) {
                        // this method shouldn't cause failure due to API version check
                        // in org.objectweb.asm.MethodVisitor#visitParameter
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitSmokeMultiVersionIntegrationTest.groovy

                    }
    
                    @Test
                    @Ignore
                    public void broken() {
                        throw new RuntimeException();
                    }
    
                    public void helpermethod() {
                    }
                }
            """.stripIndent()
            file('src/test/java/org/gradle/NoTest.java') << """
                package org.gradle;
    
                public class NoTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top