public void ShuffleDoesShuffleCollection()
        {
            var list = new[] {1, 2, 3, 4, 5, 6, 7, 8, 9};
            Assert.That(list, Is.Ordered);

            list.Shuffle();
            Assert.That(list, Is.Not.Ordered);
        }