selfware 0.6.1

Your personal AI workshop — software you own, software that lasts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Testing module
//!
//! This module contains testing and verification functionality including:
//! - API testing
//! - Contract testing
//! - Code verification
//! - Code review
//! - Mock LLM API server (test-only)

pub mod language_qa;
#[cfg(test)]
pub mod mock_api;
pub mod qa_profiles;
pub mod verification;
pub mod visual_verification;