public void ReturnItemInsertedAtIndex(ListAndIndex listAndIndex, object item) => listAndIndex.List.InsertAt(listAndIndex.Index, item).ListRef(listAndIndex.Index) .Should().Be(item);
public void IncreaseInSizeWhenItemIsInserted(ListAndIndex listAndIndex, object item) => listAndIndex.List.InsertAt(listAndIndex.Index, item).Length .Should().Be(listAndIndex.List.Length + 1);