View Javadoc
1   /*
2    * MIT License
3    * Copyright (c) 2006-2025 JMockit developers
4    * See LICENSE file for full license text.
5    */
6   package integration.tests;
7   
8   import java.security.SecureRandom;
9   
10  /**
11   * The Interface InterfaceWithExecutableCode.
12   */
13  public interface InterfaceWithExecutableCode {
14  
15      /** The n. */
16      SecureRandom RANDOM = new SecureRandom();
17      int N = 1 + RANDOM.nextInt(10);
18  
19      /**
20       * Do something.
21       */
22      void doSomething();
23  }