import ConceptRelationCollection from "../ConceptRelationCollection";

describe("conceptRelationCollection", () => {
  it("should be able to create an empty ConceptRelationCollection object", () => {
    const conceptRelationCollection = new ConceptRelationCollection();

    expect(conceptRelationCollection).toBeInstanceOf(ConceptRelationCollection);
  });
});
