summaryrefslogtreecommitdiffstats
path: root/test-runner/src/android/test/InstrumentationTestRunner.java
Commit message (Collapse)AuthorAgeFilesLines
* Merge "BandwidthTestRunner"David Hu2012-01-051-0/+10
|\
| * BandwidthTestRunnerDavid Hu2011-12-141-0/+10
| | | | | | | | | | | | | | Added BandwidthTest annotation and BandwidthTestRunner to start and stop the network traffic profiler Change-Id: Id29ac21ab99ff36bd864121276db59b61eb6e154
* | docs: Add developer guide cross-references, Project ACRE, round 4Joe Fernandez2011-12-221-1/+9
|/ | | | Change-Id: I1b43414aaec8ea217b39a0d780c80a25409d0991
* Return the bundle objectDavid Hu2011-09-191-0/+12
| | | | | | | Added the ability for the test runner to return the bundle object so the tests can get access to input arguments Change-Id: I73a704bb2279238bd91a376aacecbe5f607af649
* Remove an obsolete import for performance tests.Jesse Wilson2010-12-211-2/+0
| | | | Change-Id: Ifc76ef821f71ea7469b4044b15071f5d2a7418fd
* Remove unused performance tests.Jesse Wilson2010-12-211-7/+0
| | | | Change-Id: I5a252e314831716f99ce5fbb32d983c7473ee787
* Fix NPE in InstrumentationTestRunnerBrian Muramatsu2010-11-171-1/+1
| | | | | | | This fixes a problem where the test runner would die when a test case has tests that are not methods of the test class. Change-Id: I5adc464bb4a0c8d282428895e422a47dcb6bfe1f
* Added RepetitiveTest annotation and test runner supportJack Wang2010-10-191-5/+21
| | | | Change-Id: I7bf0871ede6dd69512c6b6ea3484693ba5b78e89
* Improve InstrumentationTestRunner exception handling.Brett Chabot2010-07-071-3/+19
| | | | | | | | | | | | | | | | This commit fixes two somewhat related problems: - Attempting to run a method which does not exist caused a runtime exception which stopped the test run. Change this so the runner reports an individual test failure instead - A runtime exception during the test run would cause it to stop completely, with no information dumped to the logcat or stdout. Now exceptions are trapped and reported to stdout. Also added associated unit tests to test these two conditions. Related bug 2812262. Change-Id: I383f9b9bad99f14cb51071800fa9bdbf6a6a1119
* Add -e package description to InstrumentationTestRunner javadoc.Brett Chabot2010-03-191-0/+4
| | | | | | Bug 2528316 Change-Id: Ic707115e40a18521e0d57ee12f43df96be7033f2
* fix error in javadocDoug Zongker2010-02-231-0/+1
| | | | | | The "@link LargeTest" is broken since it doesn't know where that class is. Change-Id: Ie15e40bac8a1965427e351926b2208775e79cb13
* Add ability to run tests restricted to given annotation.Brett Chabot2010-02-221-1/+86
| | | | | | | | | | And ability to exclude tests with given annotation. Also fix class cast compile warning in emma output method. Bug 2239240 Change-Id: I56273a51a8c58a690680bdb612615fab69e6e13f
* Fix code coverage output message when running tests in non-raw mode.Brett Chabot2010-02-201-1/+4
| | | | Bug 2082804
* Retry test-runner tests move.Brett Chabot2010-02-201-0/+776
| | | | | This time change the frameworks makefile so it only includes test-runner/src in the public API.
* Revert "Move framework test-runner unit tests to be closer to their source."Brett Chabot2010-02-191-776/+0
| | | | This reverts commit 12093976a4842a795491cfd2b1d3b71e18503f2d.
* Move framework test-runner unit tests to be closer to their source.Brett Chabot2010-02-191-0/+776
Move the test-runner source into a separate src folder to accommodate the test move.