summaryrefslogtreecommitdiffstats
path: root/test-runner/tests
Commit message (Collapse)AuthorAgeFilesLines
* Test runner cleanup: delete unused old classes.Brett Chabot2011-06-014-464/+0
| | | | Change-Id: Iaaabd47d4074f936a811fc1b6575088d70842564
* am 243f7f85: am f6120cf4: Merge "Improve InstrumentationTestRunner exception ↵Brett Chabot2010-07-081-0/+44
|\ | | | | | | | | | | | | | | | | handling." into gingerbread Merge commit '243f7f85ea9e57716590b9cf355e55d1f0236fce' * commit '243f7f85ea9e57716590b9cf355e55d1f0236fce': Improve InstrumentationTestRunner exception handling.
| * Improve InstrumentationTestRunner exception handling.Brett Chabot2010-07-071-0/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 test runner log when test case class is not loaded.Brett Chabot2010-04-234-0/+143
|/ | | | | | | | | | | The test runner will only load TestCase classes that have a public constructor with either no params or a single String parameter. This is fairly subtle behavior and can be difficult to catch. This change adds a log message when a TestCase class is not loaded, and adds some associated unit tests. Change-Id: I6fc63e4179c949620f5773e0ae134f99905a6fb2
* Add ability to run tests restricted to given annotation.Brett Chabot2010-02-221-0/+40
| | | | | | | | | | And ability to exclude tests with given annotation. Also fix class cast compile warning in emma output method. Bug 2239240 Change-Id: I56273a51a8c58a690680bdb612615fab69e6e13f
* Retry test-runner tests move.Brett Chabot2010-02-2032-0/+2452
| | | | | 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-1932-2452/+0
| | | | This reverts commit 12093976a4842a795491cfd2b1d3b71e18503f2d.
* Move framework test-runner unit tests to be closer to their source.Brett Chabot2010-02-1932-0/+2452
Move the test-runner source into a separate src folder to accommodate the test move.