quick_widget_test
library
Functions
-
afterEach(Future<void> body(WidgetTester tester))
→ void
-
Registers a function to be run after tests.
-
beforeEach(Future<void> body(WidgetTester tester))
→ void
-
Registers a function to be run before tests.
-
context(Object description, void body())
→ void
-
Creates a group of tests.
Equivalent to
describe
.
-
describe(Object description, void body())
→ void
-
Creates a group of tests.
-
it(String description, Future<void> body(WidgetTester tester))
→ void
-
Creates a new test case with the given description (converted to a string)
and body. These are like "testWidgets" in flutter_test.