adds smoke tests to everything

adds deflated test examples
This commit is contained in:
2025-05-28 11:32:09 -04:00
parent e45d269828
commit 6c902de16f
37 changed files with 185 additions and 82 deletions
+1 -1
View File
@@ -149,7 +149,7 @@ fn main() -> eframe::Result {
});
// run our target number of ticks in the amount of available time.
let time_consumed = Instant::now().duration_since(frame_start_time).as_millis();
// let time_consumed = Instant::now().duration_since(frame_start_time).as_millis();
let mut num_ticks = 0;
while num_ticks < 1000 {
computer.tick();
+4
View File
@@ -0,0 +1,4 @@
#[test]
fn smoke() {
assert!(true)
}