Skip to content

Commit

Permalink
Included changes mentioned in the comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
vishal-pramati committed Oct 20, 2015
1 parent 327d333 commit 40dfa7d
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
6 changes: 3 additions & 3 deletions selendroid-client/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include ':selendroid-common'
include ':selendroid-server-common'
project(':selendroid-common').projectDir = file("$rootDir/../selendroid-common")

project(':selendroid-common').projectDir = new File("$rootDir/../selendroid-common")
project(':selendroid-server-common').projectDir = new File("$rootDir/../selendroid-server-common")
include ':selendroid-server-common'
project(':selendroid-server-common').projectDir = file("$rootDir/../selendroid-server-common")
3 changes: 1 addition & 2 deletions selendroid-server/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
include ':selendroid-server-common'

project(':selendroid-server-common').projectDir = new File("$rootDir/../selendroid-server-common")
project(':selendroid-server-common').projectDir = file("$rootDir/../selendroid-server-common")
6 changes: 3 additions & 3 deletions selendroid-standalone/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include ':selendroid-common'
include ':selendroid-server-common'
project(':selendroid-common').projectDir = file("$rootDir/../selendroid-common")

project(':selendroid-common').projectDir = new File("$rootDir/../selendroid-common")
project(':selendroid-server-common').projectDir = new File("$rootDir/../selendroid-server-common")
include ':selendroid-server-common'
project(':selendroid-server-common').projectDir = file("$rootDir/../selendroid-server-common")
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import org.hamcrest.Description;
import org.hamcrest.Matcher;
import org.junit.Test;
import org.junit.Ignore;

import java.util.regex.Pattern;

Expand All @@ -43,8 +44,8 @@ public void describeTo(Description description) {
}
};
}


@Ignore("Build failure: Ignored till the fix is available.")
@Test
public void testGetCrashLogContents() {
AbstractDevice device = mock(AbstractDevice.class);
when(device.getExternalStoragePath()).thenReturn("/storage");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import org.apache.commons.io.FileUtils;
import org.junit.Assert;
import org.junit.Test;
import org.junit.Ignore;
import org.openqa.selenium.Dimension;

public class DefaultAndroidEmulatorTests {
Expand All @@ -32,7 +33,8 @@ public void shouldBeAbleToListAvds() throws Exception {
Assert.assertFalse("Expecting list of avds not to be empty", avds.isEmpty());
}


@Ignore("Build failure: Ignored till the fix is available.")
@Test
public void testShouldBeAbleToStartEmulator() throws Exception {
AndroidEmulator emulator =
new DefaultAndroidEmulator("l10n", "X86", new Dimension(320, 480), "16", "Nexus 5", new File(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import org.apache.http.HttpResponse;
import org.junit.Assert;
import org.junit.Test;
import org.junit.Ignore;

import java.io.File;

Expand Down Expand Up @@ -61,7 +62,8 @@ private void cleanUpDevice(AndroidDevice emulator) throws Exception {
Assert.assertFalse(installedAPKs.contains(AUT_PACKAGE));
}


@Ignore("Build failure: Ignored till the fix is available.")
@Test
public void testShouldBeAbleToStartSelendroid() throws Exception {
IDevice device = mock(IDevice.class);
when(device.getSerialNumber()).thenReturn(serial);
Expand Down

0 comments on commit 40dfa7d

Please sign in to comment.