# android-test **Repository Path**: naughty-boy/android-test ## Basic Information - **Project Name**: android-test - **Description**: android/android-test - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-13 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 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](https://developers.android.com/testing) ## Contributing See [CONTRIBUTING.md](https://github.com/android/android-test/blob/master/CONTRIBUTING.md) ## Issues We use the [GitHub issue tracker](https://github.com/android/android-test/issues) for tracking feature requests and bugs. Please see the [AndroidX Test Discuss mailing list](https://groups.google.com/forum/#!forum/androidx-test-discuss) for general questions and discussion, and please direct specific questions to [Stack Overflow](https://stackoverflow.com/questions/tagged/androidx-test). ## Bazel integration To depend on this repository in Bazel, add the following snippet to your WORKSPACE file: ``` ATS_TAG = "" http_archive( name = "android_test_support", sha256 = "", 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() ```