import ConstraintCollection from "../ConstraintCollection";

describe("constraintCollection", () => {
  it("should be able to create an instance of ConstraintCollection", () => {
    const constraints = new ConstraintCollection();

    expect(constraints).toBeInstanceOf(ConstraintCollection);
  });
});
