quick_test library

Functions

afterEach(dynamic body()) → void
Registers a function to be run after tests.
beforeEach(dynamic body()) → 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(Object description, void body()) → void
Creates a new test case with the given description (converted to a string) and body. These are like "test" in flutter_test.