1 /*
2 * MIT License
3 * Copyright (c) 2006-2025 JMockit developers
4 * See LICENSE file for full license text.
5 */
6 package mockit.integration.junit4;
7
8 public final class AnotherDependency {
9 static boolean mockedAtSuiteLevel;
10
11 public static boolean alwaysTrue() {
12 return true;
13 }
14 }