jimmyhoran / android-test

An extensive framework for testing Android apps

Home Page:https://android.github.io/android-test

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AndroidX Test Library

The AndroidX Test Library provides an extensive framework for testing Android apps. This library provides a set of APIs that allow you to quickly build and run test code for your apps, including JUnit 4 and functional user interface (UI) tests. You can run tests created using these APIs from the Android Studio IDE or from the command line.

For more details see developers.android.com/testing

Contributing

See CONTRIBUTING.md

Issues

We use the GitHub issue tracker for tracking feature requests and bugs.

Please see the AndroidX Test Discuss mailing list for general questions and discussion, and please direct specific questions to Stack Overflow.

Bazel integration

To depend on this repository in Bazel, add the following snippet to your WORKSPACE file:

ATS_TAG = "<release-tag>"
http_archive(
    name = "android_test_support",
    sha256 = "<sha256 of release>",
    strip_prefix = "android-test-%s" % ATS_TAG,
    urls = ["https://github.com/android/android-test/archive/%s.tar.gz" % ATS_TAG],
)
load("@android_test_support//:repo.bzl", "android_test_repositories")
android_test_repositories()

About

An extensive framework for testing Android apps

https://android.github.io/android-test

License:Apache License 2.0


Languages

Language:Java 87.0%Language:Python 6.0%Language:Starlark 5.9%Language:HTML 0.6%Language:Kotlin 0.4%Language:Shell 0.1%Language:Dockerfile 0.0%