| commit | ee3e44803232312e75669478e8a801f2ebbe6be3 | [log] [tgz] |
|---|---|---|
| author | Alexander Dorokhine <adorokhine@google.com> | Thu May 18 13:55:49 2017 -0700 |
| committer | GitHub <noreply@github.com> | Thu May 18 13:55:49 2017 -0700 |
| tree | b513ed9564310cddcf0d3a186cdd5439b36cb799 | |
| parent | c329175f2fc2a161d6f82ce34e50396625537333 [diff] |
Change 'test case' to 'test' and 'test method' for clarity. (#210) Pyunit and JUnit both use 'test case' to mean 'test class', but Mobly used it to mean 'test method', so trying to avoid misunderstanding.
Mobly is a Python-based test framework that specializes in supporting test cases that require multiple devices, complex environments, or custom hardware setups.
Here are some example use cases:
Mobly can support many different types of devices and equipment, and it's easy to plug your own device or custom equipment/service into Mobly.
Mobly comes with a set of libs to control common devices like Android devices.
While developed by Googlers, Mobly is not an official Google product.
Mobly is compatible with both python 3.4+ and python 2.7.
Mobly tests could run on the following platforms:
If you use Python3, use pip3 and python3 (or python3.x) accordingly.
You can install the released package from pip
$ pip install mobly
or download the source then run setup.py to use the bleeding edge:
$ git clone https://github.com/google/mobly.git $ cd mobly $ python setup.py install
You may need sudo for the above commands if your system has certain permission restrictions.
To get started with some simple tests, see the Mobly tutorial.
The Mobly Snippet projects let users better control Android devices.