1   /*
2    * SPDX-FileCopyrightText: none
3    * SPDX-License-Identifier: CC0-1.0
4    */
5   
6   package dev.metaschema.core.testsupport;
7   
8   import dev.metaschema.core.testsupport.builder.IModuleMockFactory;
9   import dev.metaschema.core.testsupport.mocking.AbstractMockitoFactory;
10  
11  /**
12   * Provides the ability to generate mocked Metaschema module definitions and
13   * instances, along with other mocked data.
14   */
15  public class MockedModelTestSupport
16      extends AbstractMockitoFactory
17      implements IModuleMockFactory {
18    /**
19     * Construct a new model mock factory using the default JUnit-based mocking
20     * context.
21     */
22    public MockedModelTestSupport() {
23      // do nothing
24    }
25  }