diff options
author | Paul Duffin <paulduffin@google.com> | 2021-03-31 21:41:42 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2021-03-31 21:41:42 +0000 |
commit | 4aa7faf487c76ac45fc7112b56865a44290533ea (patch) | |
tree | a0e002b338f4e2dd8407af048d1eb3c180499add /java/java_test.go | |
parent | bcaf0fcb55f21b2dfa49f2d559966baab8525ae3 (diff) | |
parent | 535e0a105e9feb84c4f44174beb0dfd8d89b361b (diff) |
Merge "Remove unused java testing methods"
Diffstat (limited to 'java/java_test.go')
-rw-r--r-- | java/java_test.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/java/java_test.go b/java/java_test.go index 3aafdda75..fdf757902 100644 --- a/java/java_test.go +++ b/java/java_test.go @@ -74,23 +74,6 @@ func testJavaError(t *testing.T, pattern string, bp string) (*android.TestContex return result.TestContext, result.Config } -// testJavaErrorWithConfig is a legacy way of running tests of java modules that expect errors. -// -// See testJava for an explanation as to how to stop using this deprecated method. -// -// deprecated -func testJavaErrorWithConfig(t *testing.T, pattern string, config android.Config) (*android.TestContext, android.Config) { - t.Helper() - // This must be done on the supplied config and not as part of the fixture because any changes to - // the fixture's config will be ignored when RunTestWithConfig replaces it. - pathCtx := android.PathContextForTesting(config) - dexpreopt.SetTestGlobalConfig(config, dexpreopt.GlobalConfigForTests(pathCtx)) - result := prepareForJavaTest. - ExtendWithErrorHandler(android.FixtureExpectsAtLeastOneErrorMatchingPattern(pattern)). - RunTestWithConfig(t, config) - return result.TestContext, result.Config -} - // testJavaWithFS runs tests using the prepareForJavaTest // // See testJava for an explanation as to how to stop using this deprecated method. |