public void LongLengthOnSixTuple() { const long expected = 6; var t = new Tuple<int, int, int, int, int, int>(-1, -2, -3, -4, -5, -6); long actual = t.LongLength(); Assert.AreEqual(expected, actual); }
public void LongLengthOnTwoTuple() { const long expected = 2; var t = new Tuple<int, int>(-1, -2); long actual = t.LongLength(); Assert.AreEqual(expected, actual); }
public void LongLengthOnOneTuple() { const long expected = 1; var t = new Tuple<int>(-1); long actual = t.LongLength(); Assert.AreEqual(expected, actual); }