View Javadoc
1   /*
2    * MIT License
3    * Copyright (c) 2006-2025 JMockit developers
4    * See LICENSE file for full license text.
5    */
6   package java8testing;
7   
8   /**
9    * The Class Collaborator.
10   */
11  public final class Collaborator {
12  
13      /**
14       * Do something.
15       *
16       * @param i
17       *            the i
18       *
19       * @return the string
20       */
21      public String doSomething(int i) {
22          return "";
23      }
24  }