我想编写一个单元测试来断言我的Android应用程序的标签(显示在应用程序图标下的启动器屏幕上)。
<application
android:name=".FinanceApplication"
android:icon="@mipmap/ic_launcher"
android:theme="@android:style/Theme.NoTitleBar"
android:label="@string/application_title" // <-- I want to test this field
>
// …
</application>
我的项目已经在使用Robolectric来编写单元测试。任何建议将不胜感激!