Move 17 library crates into crates/, CLI binary into bin/fxt, consolidate 10 test crates into testing/, split config crate from deployment config files. Root directory reduced from 38+ to ~17 directories. All Cargo.toml paths and build.rs proto refs updated. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
1.2 KiB
Rust
41 lines
1.2 KiB
Rust
//! Simple Performance Test to validate benchmark infrastructure works
|
|
|
|
use common::types::{Price, Quantity};
|
|
use criterion::{black_box, criterion_group, criterion_main, Criterion};
|
|
|
|
/// Simple benchmark to test that criterion framework is working
|
|
fn simple_benchmark(c: &mut Criterion) {
|
|
c.bench_function("simple_test", |b| {
|
|
b.iter(|| {
|
|
let x = black_box(42);
|
|
let y = black_box(24);
|
|
black_box(x + y)
|
|
})
|
|
});
|
|
}
|
|
|
|
/// Test that our imports work
|
|
fn test_imports_benchmark(c: &mut Criterion) {
|
|
c.bench_function("test_imports", |b| {
|
|
b.iter(|| {
|
|
// Test basic types
|
|
let price = black_box(
|
|
Price::new(100.0)
|
|
.map_err(|e| format!("Failed to create test price: {}", e))
|
|
.unwrap(),
|
|
);
|
|
let quantity = black_box(
|
|
Quantity::new(1000.0)
|
|
.map_err(|e| format!("Failed to create test quantity: {}", e))
|
|
.unwrap(),
|
|
);
|
|
|
|
// Simple calculation
|
|
black_box(price.as_f64() * quantity.as_f64())
|
|
})
|
|
});
|
|
}
|
|
|
|
criterion_group!(benches, simple_benchmark, test_imports_benchmark);
|
|
criterion_main!(benches);
|