@TestTargetNew(
      level = TestLevel.COMPLETE,
      method = "getChangingConfigurations",
      args = {})
  public void testGetChangingConfigurations() {
    Drawable d = mContext.getResources().getDrawable(R.drawable.pass);
    InsetDrawable insetDrawable = new InsetDrawable(d, 0);

    insetDrawable.setChangingConfigurations(11);
    assertEquals(11, insetDrawable.getChangingConfigurations());

    insetDrawable.setChangingConfigurations(-21);
    assertEquals(-21, insetDrawable.getChangingConfigurations());
  }