pub fn generate_tests_for_project(
project_path: &str,
) -> Result<(), Box<dyn Error>>Expand description
Generate test files for a Rust project with default configuration.
This is the main entry point for generating integration tests.
Tests will be created in the tests/ directory with default settings.
ยงExample
use auto_test::generate_tests_for_project;
generate_tests_for_project("./my_rust_project")?;