Correct test case for KT-12776

After minifying test, it stopped failing without fix
This commit is contained in:
Alexey Tsvetkov
2016-07-14 16:43:32 +03:00
parent 58e13ddf54
commit 941437a9a2
8 changed files with 21 additions and 3 deletions
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Test.Inherited" />
</resources>
@@ -19,7 +19,7 @@ android {
}
dependencies {
compile project(':lib-b')
compile project(':aaa')
kapt "com.squareup.dagger:dagger-compiler:$dagger_version"
}
@@ -1,3 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.kapt">
<application />
<application
android:theme="@style/AppTheme">
</application>
</manifest>
@@ -0,0 +1,7 @@
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
</style>
<style name="Test.Inherited.Twice" />
</resources>
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Test" />
</resources>
@@ -1 +1 @@
include ':app', ':lib-a', ':lib-b'
include ':app', ':lib-a', ':aaa'