stop method

Future stop()

Stops the test application from running.

Stops application from listening to requests and calls its tear down behavior. application is set to null.

Prefer to use install instead of calling this method manually.

Implementation

Future stop() async {
  await application?.stop();
  _application = null;
}