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

Commit 76bc9eb8 authored by Anton Hansson's avatar Anton Hansson Committed by android-build-merger
Browse files

Merge "Add TEST_MAPPING" am: ed8cbcca

am: e6ef4c30

Change-Id: I7d87cf6e2fcfcce3dbd8a5cc8185406c4f6e3ab1
parents f1cd6ab3 e6ef4c30
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
{
  "presubmit": [
    {
      "name": "framework-sdkext-tests"
    }
  ]
}
+1 −0
Original line number Diff line number Diff line
@@ -6,5 +6,6 @@ android_test {
        "android.test.runner",
    ],
    static_libs: [ "framework-sdkext" ],
    test_suites: [ "general-tests" ],
    platform_apis: true,
}
+0 −5
Original line number Diff line number Diff line
@@ -29,11 +29,6 @@ public class SdkExtensionsTest extends TestCase {
            SdkExtensions.getExtensionVersion(Build.VERSION_CODES.Q);
            fail("expected IllegalArgumentException");
        } catch (IllegalArgumentException expected) { }

        try {
            SdkExtensions.getExtensionVersion(999999);
            fail("expected IllegalArgumentException");
        } catch (IllegalArgumentException expected) { }
    }

    @SmallTest