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

Commit ed8cbcca authored by Anton Hansson's avatar Anton Hansson Committed by Gerrit Code Review
Browse files

Merge "Add TEST_MAPPING"

parents 525d252e 9ff695ee
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