Deprecated platform Android testing APIs

- Deprecated most android.test.* APIs
- Kept ProviderTestCase2 and LoaderTestCase since we don't have a
replacement yet
- Deprecated android.test.suitebuilder
- Added Javadoc to all deprecated APIs with links to corresponding
Android Testing Support Library APIs
- Removed all trailing whitespace

Bug: 22314304
Change-Id: I1b1f0dd5132364110f1dfd4e3eb2dd044700d859
This commit is contained in:
Stephan Linzner
2016-01-27 18:09:50 -08:00
parent d11c15d418
commit b51617f466
57 changed files with 548 additions and 374 deletions

View File

@@ -19,6 +19,7 @@ package android.test;
import java.util.HashMap;
import java.util.Map;
@Deprecated
abstract class SimpleCache<K, V> {
private Map<K, V> map = new HashMap<K, V>();