Quantcast
Channel: Programmers Heaven Forums RSS Feed
Viewing all articles
Browse latest Browse all 2703

Hidden methods and classes in java (Robotium)

$
0
0


Is there a way I can see how a method works?

public void testAddNote() throws Exception {
solo.clickOnMenuItem("Add note");
//Assert that NoteEditor activity is opened
solo.assertCurrentActivity("Expected NoteEditor activity", "NoteEditor");
//In text field 0, add Note 1
solo.enterText(0, "Note 1");
solo.goBack();

Is there a way I can see the source code for the goBack() method? new Solo() was declared. Is there a way I can see the Solo class? Where is it hidden? Thanks a lot.
ASP.Net Web Development

Viewing all articles
Browse latest Browse all 2703

Trending Articles