Skip to content

Commit

Permalink
s/CRLF/LF/g
Browse files Browse the repository at this point in the history
  • Loading branch information
hugojosefson committed May 15, 2011
1 parent b555610 commit 8177550
Showing 1 changed file with 35 additions and 35 deletions.
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
package com.jayway.maven.plugins.android;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

public class AbstractEmulatorMojoTest {

private AbstractEmulatorMojo mockMojo;

@Before
public void setUp() throws Exception {
mockMojo = new mockAbstractEmulatorMojo();
}

@Ignore
@Test
public final void testStartAndStopAndroidEmulator() throws MojoExecutionException {
mockMojo.startAndroidEmulator();
mockMojo.stopAndroidEmulator();
}

private class mockAbstractEmulatorMojo extends AbstractEmulatorMojo {

public void execute() throws MojoExecutionException,
MojoFailureException {
// TODO Auto-generated method stub

}

}

}
package com.jayway.maven.plugins.android;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

public class AbstractEmulatorMojoTest {

private AbstractEmulatorMojo mockMojo;

@Before
public void setUp() throws Exception {
mockMojo = new mockAbstractEmulatorMojo();
}

@Ignore
@Test
public final void testStartAndStopAndroidEmulator() throws MojoExecutionException {
mockMojo.startAndroidEmulator();
mockMojo.stopAndroidEmulator();
}

private class mockAbstractEmulatorMojo extends AbstractEmulatorMojo {

public void execute() throws MojoExecutionException,
MojoFailureException {
// TODO Auto-generated method stub

}

}

}

0 comments on commit 8177550

Please sign in to comment.