updateTests top-level property

Map<String, (UpdateTest, int, int)> updateTests
final

Implementation

final updateTests = <String, (UpdateTest, int, int)>{
  'update_1to1': (updateComputations1to1, count * 4, 1),
  'update_2to1': (updateComputations2to1, count * 2, 2),
  'update_4to1': (updateComputations4to1, count, 4),
  'update_1000to1': (updateComputations1000to1, count ~/ 100, 1000),
  'update_1to2': (updateComputations1to2, count * 4, 1),
  'update_1to4': (updateComputations1to4, count * 4, 1),
  'update_1to1000': (updateComputations1to1000, count * 4, 1),
};