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

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