dotscope 0.6.0

A high-performance, cross-platform framework for analyzing and reverse engineering .NET PE executables
Documentation
//! Builder pattern implementations for creating mock metadata objects
//!
//! This module contains fluent API builders for creating various .NET metadata
//! structures used in testing. Each builder provides a clean, composable way
//! to construct mock objects with realistic data.

// Private sub-modules - public interface is through parent test module
mod assembly;
mod constants;
mod fields;
mod files;
mod methods;
mod params;
mod properties;
mod types;

// Re-export all builders for use by parent module
pub use assembly::*;
pub use constants::*;
pub use fields::*;
pub use files::*;
pub use methods::*;
pub use params::*;
pub use properties::*;
pub use types::*;