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

Commit e2d458e5 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add a new setting category for the account detail page."

parents 0a47bdbe 0013dee1
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -37,6 +37,8 @@ public final class CategoryKey {
    public static final String CATEGORY_SECURITY_LOCKSCREEN =
            "com.android.settings.category.ia.lockscreen";
    public static final String CATEGORY_ACCOUNT = "com.android.settings.category.ia.accounts";
    public static final String CATEGORY_ACCOUNT_DETAIL =
            "com.android.settings.category.ia.account_detail";
    public static final String CATEGORY_SYSTEM = "com.android.settings.category.ia.system";
    public static final String CATEGORY_SYSTEM_LANGUAGE =
            "com.android.settings.category.ia.language";
+2 −1
Original line number Diff line number Diff line
@@ -56,12 +56,13 @@ public class CategoryKeyTest {
        allKeys.add(CategoryKey.CATEGORY_SECURITY);
        allKeys.add(CategoryKey.CATEGORY_SECURITY_LOCKSCREEN);
        allKeys.add(CategoryKey.CATEGORY_ACCOUNT);
        allKeys.add(CategoryKey.CATEGORY_ACCOUNT_DETAIL);
        allKeys.add(CategoryKey.CATEGORY_SYSTEM);
        allKeys.add(CategoryKey.CATEGORY_SYSTEM_LANGUAGE);
        allKeys.add(CategoryKey.CATEGORY_SYSTEM_DEVELOPMENT);
        // DO NOT REMOVE ANYTHING ABOVE

        assertThat(allKeys.size()).isEqualTo(14);
        assertThat(allKeys.size()).isEqualTo(15);
    }

}