public void Constructor_RandIsSet()
        {
            IRandomExtensions rand = Mock.Of<IRandomExtensions>();
            var target = new RandomDateTimeDataSource(rand);

            Assert.AreEqual(rand, target.Random, "The Random Property was not set properly.");
        }
        public void Next()
        {
            Mock<IRandomExtensions> randMock = new Mock<IRandomExtensions>();
            var target = new RandomDateTimeDataSource(randMock.Object);
            target.Next(null);

            randMock.Verify(a => a.GetDateTime(RandomDateTimeDataSource.MinValue, System.DateTime.MaxValue), @"
            The GetDateTime method on the IRandomExtensions object was not called.
            ");
        }