多模块项目:在不同模块的测试 类 之间重用静态方法

multimodule project: reuse static method between test classes from different modules

我有一个多模块 java maven 项目。我在模块 A 的 junit class 中添加了一个静态方法。现在我想在模块 B 的 juinit 测试中重用这个静态方法。

模块 1:

public class AccountDAOTest {

    private static Faker faker = new Faker();

    public static Account getRandomAccount() {
        Account account = new Account();
        account.set...(faker.idNumber().valid());
        ...
        return account;
    }

    @Test
    public void getByName() {
        Account expected = getRandomAccount();
        accountDAO.persist(expected);
        assertNotEquals(expected.getId(), null);

        Account actual = accountDAO.getByName(expected.getName());
        assertNotNull(actual);
    }

    ...
}

模块 2(尝试重用静态方法):

public class BusinessBeanTest {

    @Test
    public void testSomething() {
        Account account = AccountDAOTest.getRandomAccount();
        ...
    }
}

问题是 AccountDAOTest.java 不在模块 2 测试的 class 路径中 我在 [=13= 中添加模块依赖项] 模块 2 的测试范围。

我只能看到两个解决方案:

None 上面两个 solitions 看起来不错。

有什么想法可以以正确的方式做到这一点吗?

如何创建仅包含测试的 jar,然后将其包含到其他模块中?

对于模块 1:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <version>3.1.1</version>
    <executions>
      <execution>
        <goals>
          <goal>test-jar</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

对于模块 2:

    <dependency>
      <groupId>groupId</groupId>
      <artifactId>artifactId</artifactId>
      <classifier>tests</classifier>
      <type>test-jar</type>
      <version>version</version>
      <scope>test</scope>
    </dependency>