mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-27 21:57:57 +00:00
d93824d973
* Remove the old reporting infra * Use the Test struct more in the code * Implement the initial set of reporter events * Add more runner events to the reporter and refine the structure * Add reporting infra for reporting ignored tests * Update report to use better map data structures * Add case status information to the report * Integrate the reporting infrastructure with the CLI reporter used by the program. * Include contract compilation information in report * Cleanup report model * Add information on the deployed contracts
12 lines
252 B
Rust
12 lines
252 B
Rust
//! This crate implements the reporting infrastructure for the differential testing tool.
|
|
|
|
mod aggregator;
|
|
mod common;
|
|
mod reporter_event;
|
|
mod runner_event;
|
|
|
|
pub use aggregator::*;
|
|
pub use common::*;
|
|
pub use reporter_event::*;
|
|
pub use runner_event::*;
|