Enqueues a callback destroy_func to be executed during the next test case
teardown phase.
This is most useful to auto destroy allocated test resources at the end
of a test run. Resources are released in reverse queue order, that means
enqueueing callback A before callback B will cause B() to be called
before A() during teardown.
Enqueues a callback
destroy_functo be executed during the next test case teardown phase.This is most useful to auto destroy allocated test resources at the end of a test run. Resources are released in reverse queue order, that means enqueueing callback
Abefore callbackBwill causeB()to be called beforeA()during teardown.