describe(".lastOrDefault", () => {

    it("returns undefined if called on an empty sequence without arguments", () => {
        expect(Sequence.empty().lastOrDefault()).toBeUndefined();
    });