Hi I have the following code:

@RunWith(Test9Runner.class)
public class MainActivityTest 
{
    private MainActivity activity;
    private Button pressMeButton;

    @Before
    public void setUp() throws Exception 
    {
        activity = new MainActivity();
        activity.onCreate(null);
        pressMeButton = (Button) activity.findViewById(R.id.button1);
    }

    @Test
    public void shouldUpdateResultsWhenButtonIsClicked() throws Exception 
    {
        pressMeButton.performClick();
        ShadowActivity shadowActivity = shadowOf(activity);
        Intent intent = shadowActivity.getResultIntent();
        System.out.print(intent.toString());
    }
}

But I have no idea how to test that pressing pressMeButton started a new Activity. Actually it does, but how to write the correct Robolectric unit test for this fact?

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

Use Robolectric's StartedMatcher

@RunWith(Test9Runner.class) 
public class MainActivityTest  {
    private MainActivity activity;
    private Button pressMeButton;

    @Before
    public void setUp() throws Exception 
    {
        activity = new MainActivity();
        activity.onCreate(null);
        pressMeButton = (Button) activity.findViewById(R.id.button1);
    }

    @Test
    public void shouldStartNextActivityWhenButtonIsClicked() 
    {
        pressMeButton.performClick();
        assertThat(activity, new StartedMatcher(NextActivity.class));
    }  
}
link|improve this answer
assertThat causes error: The method assertThat(T, Matcher<T>) in the type Assert is not applicable for the arguments (MainActivity, Intent) – user739684 May 28 '11 at 11:41
Sorry, you're right. I corrected the answer. Needs to take an Intent, not an activity. We internally use a helper method that reads "assertThat(activity, started(NextActivity.class));" - much more readable. – Scott Bale May 30 '11 at 4:27
Thought this worked initially and upvoted but it doesn't. Where does this test intercept the Intent raised in performClick? All this test does is construct two Intents and checks if they are equal - which they will never be. Could you clarify this code? – JDT Jun 13 '11 at 21:57
What is Test9Runner? – Dongshengcn Jun 17 '11 at 17:22
@JDT you are right, I corrected the last line of my answer. Thanks. – Scott Bale Jul 20 '11 at 20:00
show 1 more comment
feedback

Having not used any of the unit testing in android, i am not sure if this will work:

In the activity you are starting, you could make a static variable called "instance".

private static TheActivitysName instance;

In the activity onCreate you set the instance variable:

instance = this;

And then you create a static method to get this variable.

public static TheActivitysName getInstance() {
    return instance;
}

In your test, you can then test on TheActivitysName.getInstance(). If it is null, then the activity has not been started. If it is different from null, then the activity has been created.

I'm not sure if code to check will be executed before the activity has had time to been created though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.