/**
 * Copyright IBM Corp. 2024, 2025
 */
import { GatewayFactory } from "../../src/model-factories/gateway.factory.js";
import { gatewayEnv } from "../__mocks__/test-data/gateway.data.js";

describe("GatewayFactory", () => {
  it("should validate a valid gateway object", () => {
    expect(() => new GatewayFactory().create(gatewayEnv)).not.toThrow();
  });
});
