Sha256: fb92a6c08718a90a471350f15d330febc99c046d16ce8a9e6f75cb0387b8ad1f

Contents?: true

Size: 692 Bytes

Versions: 12

Compression:

Stored size: 692 Bytes

Contents

package com.acouchi;

import android.test.ActivityInstrumentationTestCase2;
import com.jayway.android.robotium.solo.Solo;
import android.app.Activity;
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);
  }

  @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

12 entries across 12 versions & 1 rubygems

Version Path
acouchi-0.0.14 src/com/acouchi/TestCase.java
acouchi-0.0.13 src/com/acouchi/TestCase.java
acouchi-0.0.12 src/com/acouchi/TestCase.java
acouchi-0.0.11 src/com/acouchi/TestCase.java
acouchi-0.0.10 src/com/acouchi/TestCase.java
acouchi-0.0.9 src/com/acouchi/TestCase.java
acouchi-0.0.8 src/com/acouchi/TestCase.java
acouchi-0.0.7 src/com/acouchi/TestCase.java
acouchi-0.0.6 src/com/acouchi/TestCase.java
acouchi-0.0.5 src/com/acouchi/TestCase.java
acouchi-0.0.4 src/com/acouchi/TestCase.java
acouchi-0.0.3 src/com/acouchi/TestCase.java