#![feature(custom_test_frameworks)]
#![test_runner(test_runner)]
#![allow(clippy::assertions_on_constants)]
use std::{fmt::Write, process::exit};
use os_test_framework::{
platform::{ExitState, Platform, init_platform},
test,
};
struct TestPlatform;
impl Platform for TestPlatform {
fn exit(&self, state: os_test_framework::platform::ExitState) -> ! {
match state {
ExitState::Success => exit(0),
ExitState::Failed => panic!("Test shouldn't fail"),
}
}
}
impl Write for TestPlatform {
fn write_str(&mut self, s: &str) -> std::fmt::Result {
print!("{s}");
Ok(())
}
}
fn test_runner(tests: &[&dyn Fn()]) {
init_platform(TestPlatform);
os_test_framework::run_tests(tests);
}
test! {
"Test" {
assert!(true);
}
}
test! {
"Test 2" {
assert!(true);
}
}
test! {
"Test 3" {
assert!(true);
}
}