Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for agentWasApplied (0.14 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TapiAgentInstrumentationCrossVersionSpec.groovy

            when:
            runDumpTaskWithTapi()
    
            then:
            agentWasApplied()
        }
    
        def "agent is applied if enabled in settings"() {
            given:
            withAgentEnabledInProperties()
            withDumpAgentStatusTask()
    
            when:
            runDumpTaskWithTapi()
    
            then:
            agentWasApplied()
        }
    
        def "agent is not applied if disabled in settings"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

    class AgentApplicationTest extends AbstractIntegrationSpec {
        def "agent is enabled by default"() {
            given:
            withDumpAgentStatusTask()
    
            when:
            succeeds()
    
            then:
            agentWasApplied()
        }
    
        def "agent is not applied if disabled in the command-line"() {
            given:
            withoutAgent()
            withDumpAgentStatusTask()
    
            when:
            succeeds()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top