1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//! Integration test utilities for GPUI UI Kit
//!
//! This module provides integration tests for all UI components
//! that verify they can be rendered in actual GPUI windows.
// Component integration tests - Form Controls
mod button_set_test;
mod button_test;
mod checkbox_test;
mod color_picker_test;
mod input_test;
mod number_input_test;
mod select_test;
mod slider_test;
mod toggle_test;
// Component integration tests - Display Components
mod alert_test;
mod avatar_test;
mod badge_test;
mod card_test;
mod dialog_test;
mod icon_button_test;
// Component integration tests - Navigation Components
mod accordion_test;
mod breadcrumbs_test;
mod menu_test;
mod tabs_test;
mod wizard_test;
// Component integration tests - Layout Components
mod pane_divider_test;
mod stack_test;
// Component integration tests - Audio/Control Components
mod potentiometer_test;
mod vertical_slider_test;
mod volume_knob_test;
// Component integration tests - Feedback Components
mod progress_test;
mod spinner_test;
mod text_test;
mod toast_test;
mod tooltip_test;
#[cfg(test)]
mod tests {
#[test]
fn test_module_compiles() {
// If this compiles, the module structure works
}
}