FEST for Android.
A set of FEST assertion helpers geared toward testing Android..
Here is the list of declaration for fest-android. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.squareup</groupId> <artifactId>fest-android</artifactId> <version>1.0.3</version> </dependency>
If you think this Maven repository POM file listing for fest-android is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The fest-android-1.0.3 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Android | android 4.1.1.4 A library jar that provides APIs for Applications written for the Google Android Platform. | 37 |
Android | support-v4 r7 The Support Package includes static "support libraries" that you can add to your Android application in order to use APIs that are either not available for older platform versions or that offer "utility" APIs that aren't a part of the framework APIs. | 11 |
Testing | fest-assert-core 2.0M10 'Flexible' or 'fluent' assertions for testing | 51 |
The following plugins are used in the fest-android-1.0.3.jar
The following packages are defined in the fest-android-1.0.3.jar
org.fest.assertions.api org.fest.assertions.api.android.accounts org.fest.assertions.api.android.animation org.fest.assertions.api.android.app org.fest.assertions.api.android.content org.fest.assertions.api.android.content.res org.fest.assertions.api.android.database org.fest.assertions.api.android.database.sqlite org.fest.assertions.api.android.gesture org.fest.assertions.api.android.graphics org.fest.assertions.api.android.graphics.drawable org.fest.assertions.api.android.graphics.drawable.shapes org.fest.assertions.api.android.hardware org.fest.assertions.api.android.hardware.usb org.fest.assertions.api.android.inputmethodservice org.fest.assertions.api.android.location org.fest.assertions.api.android.os org.fest.assertions.api.android.preference org.fest.assertions.api.android.support.v4.app org.fest.assertions.api.android.support.v4.content org.fest.assertions.api.android.support.v4.util org.fest.assertions.api.android.support.v4.view org.fest.assertions.api.android.support.v4.widget org.fest.assertions.api.android.util org.fest.assertions.api.android.view org.fest.assertions.api.android.view.accessibility org.fest.assertions.api.android.view.animation org.fest.assertions.api.android.webkit org.fest.assertions.api.android.widget
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.squareup</groupId> <artifactId>fest-android</artifactId> <version>1.0.3</version> <name>FEST for Android</name> <description>A set of FEST assertion helpers geared toward testing Android.</description> <url>http://github.com/square/fest-android/</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- Compilation --> <java.version>1.6</java.version> <!-- Dependencies --> <fest.version>2.0M10</fest.version> <android.version>4.1.1.4</android.version> <android.support.version>r7</android.support.version> </properties> <scm> <url>http://github.com/square/fest-android/</url> <connection>scm:git:git://github.com/square/fest-android.git</connection> <developerConnection>scm:git:ssh://git@github.com/square/fest-android.git</developerConnection> <tag>fest-android-1.0.3</tag> </scm> <issueManagement> <system>GitHub Issues</system> <url>http://github.com/square/fest-android/issues</url> </issueManagement> <licenses> <license> <name>Apache 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <organization> <name>Square, Inc.</name> <url>http://squareup.com</url> </organization> <dependencies> <dependency> <groupId>com.google.android</groupId> <artifactId>android</artifactId> <version>${android.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.android</groupId> <artifactId>support-v4</artifactId> <version>${android.support.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert-core</artifactId> <version>${fest.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.9.1</version> <configuration> <failsOnError>true</failsOnError> <configLocation>checkstyle.xml</configLocation> <consoleOutput>true</consoleOutput> </configuration> <executions> <execution> <phase>verify</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> </plugins> </build> </project>