pub fn describe(
title: &str,
description: &str,
after_all_hook: fn(),
after_each_hook: fn(),
before_all_hook: fn(),
before_each_hook: fn(),
main: fn(Suite) -> Suite,
) -> Suite
Expand description
ยงStart a test suite
description
The test suite descriptionafter_all_hook
A callbackafter_each_hook
A callbackbefore_all_hook
A callbackbefore_each_hook
A callbackmain
The main callback