You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes I want to assert multiple widgets with the same condition. e.g. when building a form.
I could write it multi-line, but it might be useful to assert all at the same time
finalWidgetSelector<Checkbox> boxA =spotCheckboxA();
finalWidgetSelector<Checkbox> boxB =spotCheckboxB();
finalWidgetSelector<Checkbox> boxC =spotCheckboxC();
// assert that those widgets are checked// [boxA, boxB, boxC].areChecked();
The text was updated successfully, but these errors were encountered:
Sometimes I want to assert multiple widgets with the same condition. e.g. when building a form.
I could write it multi-line, but it might be useful to assert all at the same time
The text was updated successfully, but these errors were encountered: