Hello, community. Ticket description:
in testTransform
final int THREADS = 5;
final int ITERATIONS_PER_THREAD = 10_000;
So, what should I change?
Other methods have
final int THREADS = 5;
final int ITERATIONS_PER_THREAD = iterations();
where iterations() {return 10_000;}
Should I use iterations() and create same method for threads? Or may be
replace all local finals to class finals?
Should I do something else? Couse the only way to make test shorter is to
reduce number of iterations, but purpose of this test is long concurrent
actions.