Skip to content

Commit

Permalink
test: add test to check build/decode private references
Browse files Browse the repository at this point in the history
  • Loading branch information
MrIkso committed Oct 13, 2021
1 parent a1a8f0c commit 33f6d46
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,16 @@ public void valuesStringsTest() throws BrutException {
compareValuesFiles("values/strings.xml");
}

@Test
public void valuesColorsTest() throws BrutException {
compareValuesFiles("values/colors.xml");
}

@Test
public void valuesBoolsTest() throws BrutException {
compareValuesFiles("values/bools.xml");
}

@Test
public void valuesMaxLengthTest() throws BrutException {
compareValuesFiles("values-es/strings.xml");
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item type="bool" name="bool_private_reference">@*android:bool/config_enableActivityRecognitionHardwareOverlay</item>
</resources>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="color_private_reference">@*android:color/Indigo_700</color>
</resources>

0 comments on commit 33f6d46

Please sign in to comment.