View Javadoc
1   package net.avcompris.base.testutil.processes;
2   
3   /**
4    * an entry within the running process, that JUnit tests will be able to use.
5    * 
6    * @author David Andrianavalontsalama
7    */
8   public interface ProcessEntry {
9   
10      /**
11       * must return an unique identifier within the running process.
12       */
13      String getProcessEntryId();
14  }