Showing
1 changed file
with
3 additions
and
3 deletions
| @@ -149,7 +149,7 @@ referenceValue is ${calculePercentage(referenceValue, requestedValue)}% more tha | @@ -149,7 +149,7 @@ referenceValue is ${calculePercentage(referenceValue, requestedValue)}% more tha | ||
| 149 | print('GetValue delay $getx ms to made $times requests'); | 149 | print('GetValue delay $getx ms to made $times requests'); |
| 150 | print('-----------'); | 150 | print('-----------'); |
| 151 | print(''' | 151 | print(''' |
| 152 | -GetValue is ${calculePercentage(dart, getx).round()}% more fast than Default ValueNotifier with $times requests'''); | 152 | +GetValue is ${calculePercentage(dart, getx).round()}% faster than Default ValueNotifier with $times requests'''); |
| 153 | }); | 153 | }); |
| 154 | 154 | ||
| 155 | test('run benchmarks from Streams', () async { | 155 | test('run benchmarks from Streams', () async { |
| @@ -162,7 +162,7 @@ GetValue is ${calculePercentage(dart, getx).round()}% more fast than Default Val | @@ -162,7 +162,7 @@ GetValue is ${calculePercentage(dart, getx).round()}% more fast than Default Val | ||
| 162 | var dart = await stream(); | 162 | var dart = await stream(); |
| 163 | print('-----------'); | 163 | print('-----------'); |
| 164 | print(''' | 164 | print(''' |
| 165 | -GetStream is ${calculePercentage(dart, mini).round()}% more fast than Default Stream with $times requests'''); | 165 | +GetStream is ${calculePercentage(dart, mini).round()}% faster than Default Stream with $times requests'''); |
| 166 | print('-----------'); | 166 | print('-----------'); |
| 167 | 167 | ||
| 168 | times = 30000; | 168 | times = 30000; |
| @@ -180,7 +180,7 @@ GetStream is ${calculePercentage(dart, mini).round()}% more fast than Default St | @@ -180,7 +180,7 @@ GetStream is ${calculePercentage(dart, mini).round()}% more fast than Default St | ||
| 180 | print('getx_mini_stream delay $mini ms to made $times requests'); | 180 | print('getx_mini_stream delay $mini ms to made $times requests'); |
| 181 | print('-----------'); | 181 | print('-----------'); |
| 182 | print(''' | 182 | print(''' |
| 183 | -GetStream is ${calculePercentage(dart, mini).round()}% more fast than Default Stream with $times requests'''); | 183 | +GetStream is ${calculePercentage(dart, mini).round()}% faster than Default Stream with $times requests'''); |
| 184 | }); | 184 | }); |
| 185 | } | 185 | } |
| 186 | 186 |
-
Please register or login to post a comment