您需要在单元测试中使用 Theme.AppCompat 主题 -->
You need to use a Theme.AppCompat theme --> in Unit Test
我知道这个话题已经被讨论过了,但这里有点不同:
- 应用运行良好
- 错误仅在单元测试中显示
- 主题很好(新创建的示例项目)
重现方式:
- 只创建一个新项目 --> FullScreenActivity Android 4.3
- 创建单元测试
运行这
public class FullscreenActivityTest extends ActivityUnitTestCase<FullscreenActivity> {
public FullscreenActivityTest() {
super(FullscreenActivity.class);
}
public void testStart() {
startActivity(new Intent(getInstrumentation()
.getTargetContext(), FullscreenActivity.class), null, null);
Assert.assertNotNull(getActivity());
}
}
测试:
- Nexus 5 模拟器
- Nexus 6P 模拟器
每次都一样,应用运行正常。单元测试失败:
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
at android.support.v7.app.AppCompatDelegateImplBase.onCreate(AppCompatDelegateImplBase.java:124)
at android.support.v7.app.AppCompatDelegateImplV7.onCreate(AppCompatDelegateImplV7.java:146)
at android.support.v7.app.AppCompatActivity.onCreate(AppCompatActivity.java:59)
at com.sample.foobar.FullscreenActivity.onCreate(FullscreenActivity.java:88)
at android.app.Activity.performCreate(Activity.java:5990)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1106)
at android.test.ActivityUnitTestCase.startActivity(ActivityUnitTestCase.java:163)
谢谢,
保罗
以下代码对我有用——已添加到单元测试中:
@Override
public void setUp(){
ContextThemeWrapper context = new ContextThemeWrapper(getInstrumentation().getTargetContext(), R.style.AppTheme);
setActivityContext(context);
}
另请参阅:
ActivityUnitTestCase and startActivity with ActionBarActivity
也可以
使用 ActivityInstrumentationTestCase2 而不是 ActivityUnitTestCase 也解决了这个问题。
另外 activity 的 "onPause" 没有被调用。 ActivityUnitTestCase
有点奇怪
使用新的 AndroidX 库可以通过将主题传递给片段启动方法来解决这个问题:
val authDialogScenario = launchFragment<AuthDialog>(themeResId = R.style.AppTheme)
这是我的解决方案。
我知道这个话题已经被讨论过了,但这里有点不同:
- 应用运行良好
- 错误仅在单元测试中显示
- 主题很好(新创建的示例项目)
重现方式:
- 只创建一个新项目 --> FullScreenActivity Android 4.3
- 创建单元测试
运行这
public class FullscreenActivityTest extends ActivityUnitTestCase<FullscreenActivity> { public FullscreenActivityTest() { super(FullscreenActivity.class); } public void testStart() { startActivity(new Intent(getInstrumentation() .getTargetContext(), FullscreenActivity.class), null, null); Assert.assertNotNull(getActivity()); }
}
测试:
- Nexus 5 模拟器
- Nexus 6P 模拟器
每次都一样,应用运行正常。单元测试失败:
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
at android.support.v7.app.AppCompatDelegateImplBase.onCreate(AppCompatDelegateImplBase.java:124)
at android.support.v7.app.AppCompatDelegateImplV7.onCreate(AppCompatDelegateImplV7.java:146)
at android.support.v7.app.AppCompatActivity.onCreate(AppCompatActivity.java:59)
at com.sample.foobar.FullscreenActivity.onCreate(FullscreenActivity.java:88)
at android.app.Activity.performCreate(Activity.java:5990)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1106)
at android.test.ActivityUnitTestCase.startActivity(ActivityUnitTestCase.java:163)
谢谢,
保罗
以下代码对我有用——已添加到单元测试中:
@Override
public void setUp(){
ContextThemeWrapper context = new ContextThemeWrapper(getInstrumentation().getTargetContext(), R.style.AppTheme);
setActivityContext(context);
}
另请参阅: ActivityUnitTestCase and startActivity with ActionBarActivity
也可以
使用 ActivityInstrumentationTestCase2 而不是 ActivityUnitTestCase 也解决了这个问题。
另外 activity 的 "onPause" 没有被调用。 ActivityUnitTestCase
有点奇怪使用新的 AndroidX 库可以通过将主题传递给片段启动方法来解决这个问题:
val authDialogScenario = launchFragment<AuthDialog>(themeResId = R.style.AppTheme)
这是我的解决方案。