20 lines
441 B
Rust
20 lines
441 B
Rust
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use crate::tests::test_util;
|
|
#[test]
|
|
fn test_ui_module() {
|
|
test_util::setup();
|
|
assert!(true, "Basic UI module test");
|
|
}
|
|
#[test]
|
|
fn test_drive_ui() {
|
|
test_util::setup();
|
|
assert!(true, "Drive UI placeholder test");
|
|
}
|
|
#[test]
|
|
fn test_sync_ui() {
|
|
test_util::setup();
|
|
assert!(true, "Sync UI placeholder test");
|
|
}
|
|
}
|