﻿// REVIEW: Is this test useful anymore (note that TryGetMethAndExtra is gone)?

``` S := ["x", "xy", null, "xyz", "hi", "adios", "hola", "guten morgen" ];

WrapSeq(Range(10))
WrapSeq(S)

WrapSeq(Zip(s:S, i:Range(10), { A: s, X: i + 1d }))
WrapSeq(Zip(s:S, i:Range(10), { A: s, X: i + 1d } if i != 5 else null))
