public void NextValueLong()
        {
            var source = new LoremIpsumSource(1000);

            var nextValue = source.NextValue(null);

            _output.WriteLine($"Text:\r\n{nextValue}\r\n\r\n");
        }
        public void NextValue()
        {
            var source = new LoremIpsumSource();

            for (int i = 0; i < 10; i++)
            {
                var nextValue = source.NextValue(null);
                _output.WriteLine($"Value {i}:\r\n{nextValue}\r\n\r\n");
            }
        }