Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6868747
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:28:20+00:00 2026-05-27T03:28:20+00:00

how can I test listview by robotium? I just want to check if oncreate

  • 0

how can I test listview by robotium? I just want to check if oncreate event the items goes into it.

my Activity has a method:

private void initListView() {
    Adapter adapter = 
            new Adapter(this, myRepository.findAll());
    listView.setAdapter(adapter);
}

MyRepository returns List. In the ActivityInstrumentationTestCase2 I want to put some items into respository and then test if listView contains elements.

public void testListView_IsNotEmpty() {
    Item i = new Item();
    i.setSomething("item1");
    getActivity().getMyRepository().insert(i);
    assertTrue(solo.searchText("item1"));
}

Is it via robotium possible do to that?

best regards

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T03:28:20+00:00Added an answer on May 27, 2026 at 3:28 am

    This is clear case for mocking framework. I recomment jMockit as it is most advanced and suitable to use against stubbed out android libraries. As you do not like to test classes provided by android itself ( you implicitely trust that they do right thing ) , you only have to test that:

    • your repositry was asked for value list
    • this value list was used to create an adapter
    • this adapter was passed to list view

    Test case would look like this:

    @Test
    public void testThatListInitializedProperly(@Mocked final ListView listView,
                                                @Mocked final YourRepository repository,
                                                @Mocked(methods = {"initListView"}, inverse=true) final YourActivity activity, 
                                                @Mocked final Adapter adapter
     ) {
        new Expectations() {
            {
                   repository.findAll(); returns(someList);
    
                   new Adapter(activity, someList); returns(adapter);
    
                   listView.setAdapter(adapter);
    
            }
        };
    
        activity.initListView(listView);
    

    }

    (note that I adjusted interface for easier mockability )

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My listview row appears with one word name. I want to change into two
How can I check if a directory Test exists under the path C:\mypath\is\here ?
In my application (Delphi 2007) I want to drag items from a ListView to
Possible Duplicate: How can I get device ID for Admob My activity has a
I'm loading image thumbnails into a ListView control successfully: lsvImageThumbs.Items.Clear(); imgl_ImageThumbs.Images.Clear(); string[] files =
Is there a way I can test if there are any other activities in
Is there a page similar to JSbin where I can test HTML and CSS
I am wondering is there any way we can test the font size/color of
I have a feature that uses the camera so I can test it only
I am programming in Python, and I am wondering if i can test if

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.