Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2d86c7a4 authored by Paul Duffin's avatar Paul Duffin
Browse files

Turn on DepAnn for test-base and test-runner

Bug: 30188076
Test: m -j20 RUN_ERROR_PRONE=true android.test.base android.test.runner
Change-Id: I735e3fbfcc710f1dc1b96e04f91b9feda8727b6c
parent 46656fa2
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -24,6 +24,10 @@ java_library {

    srcs: ["src/**/*.java"],

    errorprone: {
      javacflags: ["-Xep:DepAnn:ERROR"],
    },

    // Needs to be consistent with the repackaged version of this make target.
    java_version: "1.8",

+5 −0
Original line number Diff line number Diff line
@@ -21,6 +21,11 @@ package android.test;
 *
 * If you want your test to be used as a performance test, you must
 * implement this interface.
 *
 * @deprecated Use
 * <a href="{@docRoot}reference/android/support/test/runner/AndroidJUnitRunner.html">
 * AndroidJUnitRunner</a> instead. New tests should be written using the
 * <a href="{@docRoot}tools/testing-support-library/index.html">Android Testing Support Library</a>.
 */
@Deprecated
public interface PerformanceTestCase
+4 −0
Original line number Diff line number Diff line
@@ -23,6 +23,10 @@ java_library {
    java_version: "1.8",
    srcs: ["src/**/*.java"],

    errorprone: {
      javacflags: ["-Xep:DepAnn:ERROR"],
    },

    no_framework_libs: true,
    libs: [
        "framework",
+2 −1
Original line number Diff line number Diff line
@@ -19,8 +19,9 @@ package android.test;
/**
 * Thrown when an assert equals for Strings failed.
 * 
 * @deprecated use junit.framework.ComparisonFailure
 * @deprecated use org.junit.ComparisonFailure
 */
@Deprecated
public class ComparisonFailure extends AssertionFailedError {
    private junit.framework.ComparisonFailure mComparison;

+5 −0
Original line number Diff line number Diff line
@@ -20,6 +20,11 @@ import junit.framework.TestSuite;

/**
 * Implementors will know how to get a test suite.
 *
 * @deprecated Use
 * <a href="{@docRoot}reference/android/support/test/runner/AndroidJUnitRunner.html">
 * AndroidJUnitRunner</a> instead. New tests should be written using the
 * <a href="{@docRoot}tools/testing-support-library/index.html">Android Testing Support Library</a>.
 */
@Deprecated
public interface TestSuiteProvider {
Loading