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


Java Robolectric类代码示例

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


Robolectric类属于com.xtremelabs.robolectric包,在下文中一共展示了Robolectric类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: testSignIn

import com.xtremelabs.robolectric.Robolectric; //导入依赖的package包/类
@Test
public void testSignIn() {
    // Enter values, checking that the sigin button was enabled at the right
    // time
    assertFalse(mBtnSignin.isEnabled());
    mEditUserAccount.setText("[email protected]");
    assertFalse(mBtnSignin.isEnabled());
    mEditPass.setText("pass");
    assertTrue(mBtnSignin.isEnabled());
    mActivity.findViewById(R.id.btnSignIn).performClick();

    // Check that the signin activity was started
    Intent started = Robolectric.shadowOf(mActivity).getNextStartedActivity();
    assertEquals("pass", started.getStringExtra(ImApp.EXTRA_INTENT_PASSWORD));
    assertTrue(started.getData().toString().startsWith(Imps.Account.CONTENT_URI.toString()));
}
 
开发者ID:prive,项目名称:prive-android,代码行数:17,代码来源:AccountActivityTest.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(ShadowTabActivity.class);
	super.setUp();
}
 
开发者ID:groupsky,项目名称:roboguice-events,代码行数:9,代码来源:RoboEventsTabActivityTest.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(ShadowActivityGroup.class);
	super.setUp();
}
 
开发者ID:groupsky,项目名称:roboguice-events,代码行数:9,代码来源:RoboEventsActivityGroupTest.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(ShadowListActivity.class);
	super.setUp();
}
 
开发者ID:groupsky,项目名称:roboguice-events,代码行数:9,代码来源:RoboEventsLauncherActivityTest.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(ShadowMapActivity.class);
	super.setUp();
}
 
开发者ID:groupsky,项目名称:roboguice-events,代码行数:9,代码来源:RoboEventsMapActivityTest.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(ShadowFragmentActivity.class);
	super.setUp();
}
 
开发者ID:groupsky,项目名称:roboguice-events,代码行数:9,代码来源:RoboEventsFragmentActivityTest.java

示例8: 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

示例9: shouldDisplayErrorWhenContentIsInvalid

import com.xtremelabs.robolectric.Robolectric; //导入依赖的package包/类
@Test
public void shouldDisplayErrorWhenContentIsInvalid() {
	editText.setText("__INVALID__");
	mainButton.performClick();
	AlertDialog alert = ShadowAlertDialog.getLatestAlertDialog();
	ShadowAlertDialog sAlert = Robolectric.shadowOf(alert);
	assertThat(sAlert.getTitle()).isEqualTo(activity.getString(R.string.instr_error_title));
	assertThat(sAlert.getMessage()).isEqualTo(activity.getString(R.string.instr_error_msg));
}
 
开发者ID:Nilhcem,项目名称:mowitnow,代码行数:10,代码来源:InstructionsActivityTest.java

示例10: shouldStartResultActivityWhenOK

import com.xtremelabs.robolectric.Robolectric; //导入依赖的package包/类
@Test
public void shouldStartResultActivityWhenOK() throws ParserException {
	InstructionsParserAsync async = activity.new InstructionsParserAsync();
	async.onPostExecute(Mockito.mock(InstructionsParser.class));

	ShadowActivity shadowActivity = Robolectric.shadowOf(activity);
	Intent startedIntent = shadowActivity.getNextStartedActivity();
	ShadowIntent shadowIntent = Robolectric.shadowOf(startedIntent);
	assertThat(shadowIntent.getComponent().getClassName()).isEqualTo(ResultActivity.class.getName());
}
 
开发者ID:Nilhcem,项目名称:mowitnow,代码行数:11,代码来源:InstructionsActivityTest.java

示例11: setUp

import com.xtremelabs.robolectric.Robolectric; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
    MockitoAnnotations.initMocks(this);
    ObjectGraph.create(new MainModule(Robolectric.application), new BaseTestModule(), getModule()).inject(this);
}
 
开发者ID:LVOUG,项目名称:lvoug-app-android,代码行数:6,代码来源:BaseRobolectricTest.java

示例12: bindShadowClasses

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

示例13: RobolectricViewFactory

import com.xtremelabs.robolectric.Robolectric; //导入依赖的package包/类
public RobolectricViewFactory() {
    super(Robolectric.application);
}
 
开发者ID:nikhaldi,项目名称:android-view-selector,代码行数:4,代码来源:RobolectricViewFactory.java


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