Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 194 for testDir (0.23 sec)

  1. src/test/java/org/codelibs/core/beans/impl/MethodDescTest.java

            assertThat(foo.isStatic(), is(not(true)));
            foo.invokeStatic();
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testBar() throws Exception {
            final BeanDesc beanDesc = new BeanDescImpl(MyBean.class);
            final MethodDesc bar = beanDesc.getMethodDesc("bar", String.class);
            assertThat(bar, is(notNullValue()));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerNestedBuildTest.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.testkit.runner
    
    import spock.lang.Issue
    
    class GradleRunnerNestedBuildTest extends BaseGradleRunnerIntegrationTest {
    
        @Issue("https://github.com/gradle/gradle/issues/2622")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/InvalidRunnerConfigurationException.java

     * 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.testkit.runner;
    
    import org.gradle.tooling.UnsupportedVersionException;
    
    /**
     * Thrown when a build cannot be executed due to the runner being in an invalid state.
     *
     * @since 2.6
     * @see GradleRunner#build()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.kt

        internal
        interface AnnotationGeneratorParameters : WorkParameters {
            val packageName: Property<String>
            val destDir: DirectoryProperty
        }
    
        override fun execute() {
            val packageName = parameters.packageName.get()
            val sourceRootDirectory = parameters.destDir.get()
            val packageNamePath = packageName.replace(".", File.separator)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 22 10:58:31 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  5. .idea/scopes/Gradle_public_API.xml

    </component>...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 12:25:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheInjectedClasspathInstrumentationStrategy.kt

            // Report a problem and instrument anyway
            problems.onProblem(
                PropertyProblem(
                    PropertyTrace.Gradle,
                    StructuredMessage.build { text("support for using a Java agent with TestKit builds is not yet implemented with the configuration cache.") },
                    documentationSection = DocumentationSection.NotYetImplementedTestKitJavaAgent
                )
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4FilteringIntegrationTest.groovy

                }
            """
            file("src/test/java/BarTest.java") << """
                ${testFrameworkImports}
                public class BarTest {
                    @Test
                    public void testBar() { }
                }
            """
            file("src/test/java/AllFooTests.java") << """
                ${testFrameworkImports}
                import org.junit.runners.Suite;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/test/kotlin/com/myorg/ServicePluginTest.kt

    package com.myorg
    
    
    import org.gradle.testkit.runner.TaskOutcome
    import org.junit.Assert.assertEquals
    import org.junit.Assert.assertTrue
    import org.junit.Before
    import org.junit.Test
    
    class ServicePluginTest : PluginTest() {
    
        @Before
        fun init() {
            buildFile.appendText("""
                plugins {
                    id("com.myorg.service-conventions")
                }
            """)
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerArgumentsIntegrationTest.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.testkit.runner
    
    class GradleRunnerArgumentsIntegrationTest extends BaseGradleRunnerIntegrationTest {
    
        def "can execute build without specifying any arguments"() {
            given:
            buildScript """
                help {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/test/groovy/com/myorg/LibraryPluginTest.groovy

    package com.myorg
    
    import org.gradle.testkit.runner.TaskOutcome
    
    class LibraryPluginTest extends PluginTest {
    
        def setup() {
            buildFile << """
                plugins {
                    id 'com.myorg.library-conventions'
                }
            """
        }
    
        def "can declare api dependencies"() {
            given:
            readmeContainingMandatorySectionsExists()
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top