Compare commits
5 Commits
socket-1.1
...
process-0.
| Author | SHA1 | Date | |
|---|---|---|---|
| 787f951ff7 | |||
| a364b6442b | |||
| 211b965e9e | |||
| e1d030c6c5 | |||
| 8bc2b13a92 |
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
<groupId>net.bigeon.gclc</groupId>
|
<groupId>net.bigeon.gclc</groupId>
|
||||||
<artifactId>process</artifactId>
|
<artifactId>process</artifactId>
|
||||||
<version>0.0.5-SNAPSHOT</version>
|
<version>0.0.5</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>process</name>
|
<name>process</name>
|
||||||
@@ -37,7 +37,7 @@
|
|||||||
</developer>
|
</developer>
|
||||||
</developers>
|
</developers>
|
||||||
<scm>
|
<scm>
|
||||||
<tag>HEAD</tag>
|
<tag>process-0.0.5</tag>
|
||||||
<developerConnection>scm:git:gogs@git.code.bigeon.net:emmanuel/gclc.git</developerConnection>
|
<developerConnection>scm:git:gogs@git.code.bigeon.net:emmanuel/gclc.git</developerConnection>
|
||||||
</scm>
|
</scm>
|
||||||
<properties>
|
<properties>
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ public class CommandForkTest {
|
|||||||
* {@link net.bigeon.gclc.process.CommandFork#execute(net.bigeon.gclc.manager.ConsoleOutput, net.bigeon.gclc.manager.ConsoleInput, java.lang.String[])}.
|
* {@link net.bigeon.gclc.process.CommandFork#execute(net.bigeon.gclc.manager.ConsoleOutput, net.bigeon.gclc.manager.ConsoleInput, java.lang.String[])}.
|
||||||
*
|
*
|
||||||
* @throws InvalidCommandName if the test init failed
|
* @throws InvalidCommandName if the test init failed
|
||||||
* @throws CommandRunException */
|
* @throws CommandRunException if the command execution failed in the test */
|
||||||
@Test
|
@Test
|
||||||
public void testExecute() throws InvalidCommandName, CommandRunException {
|
public void testExecute() throws InvalidCommandName, CommandRunException {
|
||||||
final TaskPool pool = new TaskPool(false);
|
final TaskPool pool = new TaskPool(false);
|
||||||
|
|||||||
@@ -7,8 +7,6 @@ import static org.junit.Assert.assertEquals;
|
|||||||
import static org.junit.Assert.assertNotNull;
|
import static org.junit.Assert.assertNotNull;
|
||||||
import static org.junit.Assert.fail;
|
import static org.junit.Assert.fail;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import net.bigeon.gclc.exception.CommandRunException;
|
import net.bigeon.gclc.exception.CommandRunException;
|
||||||
@@ -30,8 +28,7 @@ public class ProcessKillTest {
|
|||||||
/** Test method for
|
/** Test method for
|
||||||
* {@link net.bigeon.gclc.process.ProcessKill#execute(net.bigeon.gclc.manager.ConsoleOutput, net.bigeon.gclc.manager.ConsoleInput, java.lang.String[])}.
|
* {@link net.bigeon.gclc.process.ProcessKill#execute(net.bigeon.gclc.manager.ConsoleOutput, net.bigeon.gclc.manager.ConsoleInput, java.lang.String[])}.
|
||||||
*
|
*
|
||||||
* @throws CommandRunException if an error occured in test
|
* @throws CommandRunException if an error occured in test */
|
||||||
* @throws IOException if an error occured with the console output */
|
|
||||||
@Test
|
@Test
|
||||||
public void testExecute() throws CommandRunException {
|
public void testExecute() throws CommandRunException {
|
||||||
final TaskPool pool = new TaskPool();
|
final TaskPool pool = new TaskPool();
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ public class ForkTaskMock extends ForkTask implements Task {
|
|||||||
|
|
||||||
private int runCall = 0;
|
private int runCall = 0;
|
||||||
|
|
||||||
/** @param lines */
|
/** Default constructor. */
|
||||||
public ForkTaskMock() {
|
public ForkTaskMock() {
|
||||||
super(10);
|
super(10);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,8 +49,8 @@ public class TaskMock implements Task {
|
|||||||
setRunningCall = 0;
|
setRunningCall = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @return */
|
/** @return the number of calls to set running method */
|
||||||
public Object getNumberSetRunning() {
|
public int getNumberSetRunning() {
|
||||||
return setRunningCall;
|
return setRunningCall;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
</parent>
|
</parent>
|
||||||
<groupId>net.bigeon.gclc</groupId>
|
<groupId>net.bigeon.gclc</groupId>
|
||||||
<artifactId>socket</artifactId>
|
<artifactId>socket</artifactId>
|
||||||
<version>1.1.13</version>
|
<version>1.1.14-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<name>GCLC Socket</name>
|
<name>GCLC Socket</name>
|
||||||
<description>Socket implementation of GCLC</description>
|
<description>Socket implementation of GCLC</description>
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
</developers>
|
</developers>
|
||||||
<scm>
|
<scm>
|
||||||
<developerConnection>scm:git:gogs@git.code.bigeon.net:emmanuel/gclc.git</developerConnection>
|
<developerConnection>scm:git:gogs@git.code.bigeon.net:emmanuel/gclc.git</developerConnection>
|
||||||
<tag>socket-1.1.13</tag>
|
<tag>HEAD</tag>
|
||||||
</scm>
|
</scm>
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>net.bigeon.config</groupId>
|
<groupId>net.bigeon.config</groupId>
|
||||||
@@ -9,7 +7,7 @@
|
|||||||
</parent>
|
</parent>
|
||||||
<groupId>net.bigeon.gclc</groupId>
|
<groupId>net.bigeon.gclc</groupId>
|
||||||
<artifactId>swt</artifactId>
|
<artifactId>swt</artifactId>
|
||||||
<version>1.1.6-SNAPSHOT</version>
|
<version>1.1.7-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<name>GCLC swt</name>
|
<name>GCLC swt</name>
|
||||||
<description>A swt window for console applications</description>
|
<description>A swt window for console applications</description>
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ public class ExecSystemCommandTest {
|
|||||||
|
|
||||||
/** Test the execution of the command.
|
/** Test the execution of the command.
|
||||||
*
|
*
|
||||||
* @throws CommandRunException */
|
* @throws CommandRunException if the command fails */
|
||||||
@Test
|
@Test
|
||||||
public void testExecute() throws CommandRunException {
|
public void testExecute() throws CommandRunException {
|
||||||
final ConsoleOutput out = SinkOutput.INSTANCE;
|
final ConsoleOutput out = SinkOutput.INSTANCE;
|
||||||
|
|||||||
Reference in New Issue
Block a user