after_all

Attribute Macro after_all 

Source
#[after_all]
Expand description

Registers a function to be run once after all tests in the current module

Example:

use fluent_test::prelude::*;

#[after_all]
fn teardown_once() {
    // Clean up test environment after all tests
}