Add test for #1674

This commit is contained in:
Connor Tumbleson 2017-11-29 07:43:45 -05:00
parent ef9be883cd
commit ee2b7206f1
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75
2 changed files with 7 additions and 0 deletions

View File

@ -197,6 +197,11 @@ public class BuildAndDecodeTest {
compareXmlFiles("res/layout/issue1130.xml");
}
@Test
public void xmlUniformAutoTextTest() throws BrutException {
compareXmlFiles("res/layout/issue1674.xml");
}
@Test(expected = AssertionError.class)
public void xmlFillParentBecomesMatchTest() throws BrutException {
compareXmlFiles("res/layout/issue1274.xml");

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android" android:autoSizeTextType="uniform" />