Sha256: c9c6b7bcddf6fd91e352a77e8c4fc63e8dd5b5864eed8062ed8578ce68b1efd8
Contents?: true
Size: 804 Bytes
Versions: 2
Compression:
Stored size: 804 Bytes
Contents
package com.acouchi; import android.test.ActivityInstrumentationTestCase2; import com.jayway.android.robotium.solo.Solo; import android.app.Activity; // import com.example.android.notepad.NotesList; import com.jayway.android.robotium.solo.Solo; public class TestCase extends ActivityInstrumentationTestCase2 { private Solo solo; private Acouchi acouchi; public TestCase() { super(ACTIVITY_UNDER_TEST.class); // super("com.example.android.notepad", NotesList.class); } @Override protected void setUp() throws Exception { super.setUp(); solo = new Solo(getInstrumentation(), this.getActivity()); } public void testSomething() throws Exception { acouchi = new Acouchi(solo); acouchi.WaitUntilServerKilled(); solo.finishOpenedActivities(); } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
acouchi-0.0.2 | src/com/acouchi/TestCase.java |
acouchi-0.0.1 | src/com/acouchi/TestCase.java |