aprender-test-showcase 0.60.0

100% test coverage calculator showcase demonstrating Probar TUI + WASM testing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! TUI Frontend for Calculator
//!
//! Probar: Visual feedback - Visual feedback through terminal interface

mod app;
mod input;
mod keypad;
mod ui;

pub use app::CalculatorApp;
pub use input::{InputHandler, KeyAction};
pub use keypad::{ButtonAction, Keypad, KeypadButton, KeypadWidget, Rect, TextBuffer};
pub use ui::render_to_buffer;