I want to generate a random string of - say length 80.
I'm thinking something like Fixture.Create<string>(length: 80);
or Fixture.Create<string>(minimumLength: 60, maximumLenth: 100);
. Both would work perfectly fine.
Creating a Customization seems overkill, but maybe that's the correct approach. There are plenty of questions regarding getting a shorter string than the default, which can be achieved with substring, but I need a longer one.