Skip to content

SOPTAndroidAdvancedStudy/android-test

This branch is 931 commits behind android/android-test:main.

Folders and files

NameName
Last commit message
Last commit date
Nov 29, 2018
Jun 29, 2021
May 9, 2019
Aug 31, 2021
Aug 31, 2021
Aug 27, 2021
Aug 26, 2021
Aug 31, 2021
Sep 16, 2020
Aug 30, 2021
Aug 20, 2021
Jul 27, 2021
Mar 6, 2020
Nov 7, 2018
Oct 15, 2020
May 9, 2019
Mar 6, 2020
Jan 7, 2021
Oct 15, 2020
Aug 1, 2018
Mar 30, 2017
May 22, 2019
Jul 12, 2021
Mar 9, 2020
Sep 27, 2018
Sep 1, 2020
Oct 1, 2018

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 86.9%
  • Starlark 5.9%
  • Python 5.8%
  • HTML 0.6%
  • Kotlin 0.5%
  • AIDL 0.2%
  • Other 0.1%