View Javadoc
1   package integrationTests;
2   
3   import java.security.SecureRandom;
4   
5   /**
6    * The Interface InterfaceWithExecutableCode.
7    */
8   public interface InterfaceWithExecutableCode {
9   
10      /** The n. */
11      SecureRandom RANDOM = new SecureRandom();
12      int N = 1 + RANDOM.nextInt(10);
13  
14      /**
15       * Do something.
16       */
17      void doSomething();
18  }