import ConceptLinkModel from "../ConceptLinkModel";

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

    expect(conceptLink).toBeInstanceOf(ConceptLinkModel);
  });
});
