当前位置: 首页>>代码示例>>Java>>正文


Java Robolectric.bindShadowClass方法代码示例

本文整理汇总了Java中com.xtremelabs.robolectric.Robolectric.bindShadowClass方法的典型用法代码示例。如果您正苦于以下问题:Java Robolectric.bindShadowClass方法的具体用法?Java Robolectric.bindShadowClass怎么用?Java Robolectric.bindShadowClass使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.xtremelabs.robolectric.Robolectric的用法示例。


在下文中一共展示了Robolectric.bindShadowClass方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setUp

import com.xtremelabs.robolectric.Robolectric; //导入方法依赖的package包/类
@Before
public void setUp() throws Exception {
	// We want to skip the real functionality of Activity (even though it's
	// shadowed and just test the firing of events)
	Robolectric.bindShadowClass(ShadowActivity.class);

	// Our mock event manager - we'll check on it for fired events
	mockEventManager = mock(EventManager.class);

	// initialize RoboGuice
	RoboGuice.setBaseApplicationInjector(Robolectric.application,
			Stage.DEVELOPMENT,
			RoboGuice.newDefaultRoboModule(Robolectric.application),
			new TestModule(mockEventManager));

	// Our activity under test
	activity = activityClass.newInstance();

	// We need to initialize it
	call("onCreate", Bundle.class, null);
}
 
开发者ID:groupsky,项目名称:roboguice-events,代码行数:22,代码来源:ActivityEventsTest.java

示例2: setUp

import com.xtremelabs.robolectric.Robolectric; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
	// We want to skip the real functionality of Activity (even though it's
	// shadowed and just test the firing of events)
	Robolectric.bindShadowClass(ShadowTabActivity.class);
	super.setUp();
}
 
开发者ID:groupsky,项目名称:roboguice-events,代码行数:9,代码来源:RoboEventsTabActivityTest.java

示例3: setUp

import com.xtremelabs.robolectric.Robolectric; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
	// We want to skip the real functionality of Activity (even though it's
	// shadowed and just test the firing of events)
	Robolectric.bindShadowClass(ShadowActivityGroup.class);
	super.setUp();
}
 
开发者ID:groupsky,项目名称:roboguice-events,代码行数:9,代码来源:RoboEventsActivityGroupTest.java

示例4: setUp

import com.xtremelabs.robolectric.Robolectric; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
	// We want to skip the real functionality of Activity (even though it's
	// shadowed and just test the firing of events)
	Robolectric.bindShadowClass(ShadowListActivity.class);
	super.setUp();
}
 
开发者ID:groupsky,项目名称:roboguice-events,代码行数:9,代码来源:RoboEventsLauncherActivityTest.java

示例5: setUp

import com.xtremelabs.robolectric.Robolectric; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
	// We want to skip the real functionality of Activity (even though it's
	// shadowed and just test the firing of events)
	Robolectric.bindShadowClass(ShadowMapActivity.class);
	super.setUp();
}
 
开发者ID:groupsky,项目名称:roboguice-events,代码行数:9,代码来源:RoboEventsMapActivityTest.java

示例6: setUp

import com.xtremelabs.robolectric.Robolectric; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
	// We want to skip the real functionality of Activity (even though it's
	// shadowed and just test the firing of events)
	Robolectric.bindShadowClass(ShadowFragmentActivity.class);
	super.setUp();
}
 
开发者ID:groupsky,项目名称:roboguice-events,代码行数:9,代码来源:RoboEventsFragmentActivityTest.java

示例7: setUp

import com.xtremelabs.robolectric.Robolectric; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
	// We want to skip the real functionality of Activity (even though it's
	// shadowed and just test the firing of events)
	Robolectric.bindShadowClass(ShadowPreferenceActivity.class);
	super.setUp();
}
 
开发者ID:groupsky,项目名称:roboguice-events,代码行数:9,代码来源:RoboEventsPreferenceActivityTest.java

示例8: bindShadowClasses

import com.xtremelabs.robolectric.Robolectric; //导入方法依赖的package包/类
@Override
protected void bindShadowClasses() {
    super.bindShadowClasses();
    Robolectric.bindShadowClass(ShadowSherlockActivity.class);
}
 
开发者ID:m4rzEE1,项目名称:ninja_chic-,代码行数:6,代码来源:InjectedTestRunner.java


注:本文中的com.xtremelabs.robolectric.Robolectric.bindShadowClass方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。