Gradle Monkey Plugin

A Gradle plugin for running Android monkey tests.

License

License

Categories

Categories

Gradle Build Tools Auto Application Layer Libs Code Generators KeY Data Data Formats Formal Verification
GroupId

GroupId

com.autoscout24.gradle
ArtifactId

ArtifactId

gradle-monkey-plugin
Last Version

Last Version

2.4
Release Date

Release Date

Type

Type

jar
Description

Description

Gradle Monkey Plugin
A Gradle plugin for running Android monkey tests.
Project URL

Project URL

https://github.com/AutoScout24/gradle-monkey-plugin
Source Code Management

Source Code Management

https://github.com/AutoScout24/gradle-monkey-plugin

Download gradle-monkey-plugin

How to add to project

<!-- https://jarcasting.com/artifacts/com.autoscout24.gradle/gradle-monkey-plugin/ -->
<dependency>
    <groupId>com.autoscout24.gradle</groupId>
    <artifactId>gradle-monkey-plugin</artifactId>
    <version>2.4</version>
</dependency>
// https://jarcasting.com/artifacts/com.autoscout24.gradle/gradle-monkey-plugin/
implementation 'com.autoscout24.gradle:gradle-monkey-plugin:2.4'
// https://jarcasting.com/artifacts/com.autoscout24.gradle/gradle-monkey-plugin/
implementation ("com.autoscout24.gradle:gradle-monkey-plugin:2.4")
'com.autoscout24.gradle:gradle-monkey-plugin:jar:2.4'
<dependency org="com.autoscout24.gradle" name="gradle-monkey-plugin" rev="2.4">
  <artifact name="gradle-monkey-plugin" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.autoscout24.gradle', module='gradle-monkey-plugin', version='2.4')
)
libraryDependencies += "com.autoscout24.gradle" % "gradle-monkey-plugin" % "2.4"
[com.autoscout24.gradle/gradle-monkey-plugin "2.4"]

Dependencies

compile (2)

Group / Artifact Type Version
com.android.tools.build : gradle jar 1.5.0
de.felixschulze.teamcity : teamcity-status-message-helper jar 1.2

Project Modules

There are no modules declared in this project.

gradle-monkey-plugin Build Status Maven Central License MIT

A Gradle plugin for running Android monkey tests.

Basic usage

Add to your build.gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
		    classpath group: 'com.autoscout24.gradle', name: 'gradle-monkey-plugin', version: '2.3'
    }
}

apply plugin: 'com.autoscout24.gradle.monkey'

Advanced usage

Add to your build.gradle

monkey {
    teamCityLog = true
    eventCount = 1000
    seed = 246
    delay = 100
    failOnFailure = false
    install = true
    timeOut = 30
    excludedDevices = ['f5adb1a1', 'a6asb224']
}
  • teamCityLog: Add features for TeamCity
  • eventCount: Number of monkey events
  • seed: Seed value for pseudo-random number generator
  • delay: Delay between events in milliseconds
  • failOnFailure: Deactivate exit code on failure
  • install: Reinstalls the APK first
  • timeout: Timeout for OutputResponse
  • excludedDevices: List of devices which should be excluded

License

gradle-monkey-plugin is available under the MIT license. See the LICENSE file for more info.

com.autoscout24.gradle

AutoScout24

Versions

Version
2.4
2.3
2.2.1
2.2
2.1.2
2.1.1
2.1
2.0
1.2
1.1
1.0
0.8
0.7.1
0.7
0.6
0.5
0.4
0.3
0.2
0.1