it("Constructor with args", () => {
        const list = new SinglyLinkedList<number>([1, 2, 3, 4]);
        expect(list.getSize()).toBe(4);
    });