本文整理汇总了Java中org.robolectric.shadows.ShadowToast类的典型用法代码示例。如果您正苦于以下问题:Java ShadowToast类的具体用法?Java ShadowToast怎么用?Java ShadowToast使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ShadowToast类属于org.robolectric.shadows包,在下文中一共展示了ShadowToast类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: startWithoutTitle
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
@Test
public void startWithoutTitle()
{
Intent intent = new Intent();
final Bundle bundle = new Bundle();
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PictureViewActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
assertTrue(activity.isFinishing());
String latestToast = ShadowToast.getTextOfLatestToast();
assertNotNull(latestToast);
}
示例2: startWithFile
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
private ActivityController startWithFile(File file) throws IOException
{
Intent intent = new Intent();
final Bundle bundle = new Bundle();
bundle.putString("file", file.getAbsolutePath());
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PictureViewActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
controller.visible();
controller.resume();
assertTrue(activity.isFinishing() == false);
String latestToast = ShadowToast.getTextOfLatestToast();
assertNull(latestToast);
return controller;
}
示例3: startWithoutProperty
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
@Test
public void startWithoutProperty()
{
Intent intent = new Intent();
final Bundle bundle = new Bundle();
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PropertyOverviewActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
controller.visible();
controller.resume();
assertTrue(activity.isFinishing());
String latestToast = ShadowToast.getTextOfLatestToast();
assertNotNull(latestToast);
}
示例4: startWithMissingProperty
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
@Test
public void startWithMissingProperty()
{
Intent intent = new Intent();
final Bundle bundle = new Bundle();
bundle.putLong("id", 0);
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PropertyOverviewActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
controller.visible();
controller.resume();
assertTrue(activity.isFinishing());
String latestToast = ShadowToast.getTextOfLatestToast();
assertNotNull(latestToast);
}
示例5: startWithProperty
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
private ActivityController startWithProperty(Property property)
{
long id = db.insertProperty(property);
Intent intent = new Intent();
final Bundle bundle = new Bundle();
bundle.putLong("id", id);
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PropertyOverviewActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
controller.visible();
controller.resume();
assertTrue(activity.isFinishing() == false);
String latestToast = ShadowToast.getTextOfLatestToast();
assertNull(latestToast);
return controller;
}
示例6: startWithoutProperty
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
@Test
public void startWithoutProperty()
{
Intent intent = new Intent();
final Bundle bundle = new Bundle();
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PropertySummaryActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
controller.visible();
controller.resume();
assertTrue(activity.isFinishing());
String latestToast = ShadowToast.getTextOfLatestToast();
assertNotNull(latestToast);
}
示例7: startWithMissingProperty
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
@Test
public void startWithMissingProperty()
{
Intent intent = new Intent();
final Bundle bundle = new Bundle();
bundle.putLong("id", 0);
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PropertySummaryActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
controller.visible();
controller.resume();
assertTrue(activity.isFinishing());
String latestToast = ShadowToast.getTextOfLatestToast();
assertNotNull(latestToast);
}
示例8: startWithProperty
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
private ActivityController startWithProperty(Property property)
{
long id = db.insertProperty(property);
Intent intent = new Intent();
final Bundle bundle = new Bundle();
bundle.putLong("id", id);
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PropertySummaryActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
controller.visible();
controller.resume();
assertTrue(activity.isFinishing() == false);
String latestToast = ShadowToast.getTextOfLatestToast();
assertNull(latestToast);
return controller;
}
示例9: startWithProperty
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
private ActivityController startWithProperty(Property property)
{
long id = db.insertProperty(property);
Intent intent = new Intent();
final Bundle bundle = new Bundle();
bundle.putLong("id", id);
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PropertyPicturesActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
controller.visible();
controller.resume();
assertTrue(activity.isFinishing() == false);
String latestToast = ShadowToast.getTextOfLatestToast();
assertNull(latestToast);
return controller;
}
示例10: startWithoutProperty
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
@Test
public void startWithoutProperty()
{
Intent intent = new Intent();
final Bundle bundle = new Bundle();
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PropertyPicturesActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
assertTrue(activity.isFinishing());
String latestToast = ShadowToast.getTextOfLatestToast();
assertNotNull(latestToast);
}
示例11: startWithMissingProperty
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
@Test
public void startWithMissingProperty()
{
Intent intent = new Intent();
final Bundle bundle = new Bundle();
bundle.putLong("id", 0);
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PropertyPicturesActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
assertTrue(activity.isFinishing());
String latestToast = ShadowToast.getTextOfLatestToast();
assertNotNull(latestToast);
}
示例12: startWithoutRequest
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
@Test
public void startWithoutRequest()
{
Intent intent = new Intent();
final Bundle bundle = new Bundle();
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(DictionaryActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
controller.visible();
controller.resume();
assertTrue(activity.isFinishing());
String latestToast = ShadowToast.getTextOfLatestToast();
assertNotNull(latestToast);
}
示例13: startWithRequest
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
private ActivityController startWithRequest(DictionaryItem item)
{
Intent intent = new Intent();
final Bundle bundle = new Bundle();
bundle.putInt("title", item.titleId);
bundle.putInt("definition", item.definitionId);
if(item.formulaId != null)
{
bundle.putInt("formula", item.formulaId);
}
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(DictionaryActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
controller.visible();
controller.resume();
assertTrue(activity.isFinishing() == false);
String latestToast = ShadowToast.getTextOfLatestToast();
assertNull(latestToast);
return controller;
}
示例14: startWithoutProperty
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
@Test
public void startWithoutProperty()
{
Intent intent = new Intent();
final Bundle bundle = new Bundle();
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PropertyProjectionsActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
controller.visible();
controller.resume();
assertTrue(activity.isFinishing());
String latestToast = ShadowToast.getTextOfLatestToast();
assertNotNull(latestToast);
}
示例15: startWithMissingProperty
import org.robolectric.shadows.ShadowToast; //导入依赖的package包/类
@Test
public void startWithMissingProperty()
{
Intent intent = new Intent();
final Bundle bundle = new Bundle();
bundle.putLong("id", 0);
intent.putExtras(bundle);
ActivityController controller = Robolectric.buildActivity(PropertyProjectionsActivity.class, intent).create();
Activity activity = (Activity)controller.get();
controller.start();
controller.visible();
controller.resume();
assertTrue(activity.isFinishing());
String latestToast = ShadowToast.getTextOfLatestToast();
assertNotNull(latestToast);
}