constStringtestValueA='Now is the time for\n'// 20
'all good people\n'// 20 + 16 => 36
'to come to the aid\n'// 36 + 19 => 55
'of their country.';// 55 + 17 => 72
constStringtestValueB='Today is the time for\n'// 22
'all good people\n'// 22 + 16 => 38
'to come to the aid\n'// 38 + 19 => 57
'of their country.';// 57 + 17 => 74
testWidgets(
'Can triple tap to select a paragraph on mobile platforms when tapping at a word edge',
(WidgetTestertester)async{
// TODO(Renzo-Olivares): Enable for iOS, currently broken because selection overlay blocks the TextSelectionGestureDetector https://github.com/flutter/flutter/issues/123415.