RAndom string of Arabic text
Hello Everyone,
Working on a project that requires me to generate different json files for use during end-to-end based testing.
one of the requirments is that the system can handle internationalisation i.e. diffrent charicter types.
I've managed to develop a simple random string sat within a method that produces different Latin characters when ever i need it.
return RandomStringUtils.random(characterAmount, true, false);
However the next step is to cover internationalisation and i need to get it to produce random strings in an Arabic character cases.
Would anybody have any tips on how best to go about this.
Thank you