12 lines
262 B
Rust
12 lines
262 B
Rust
// file: crates/engines/engine-v1-sdl/unit_tests/runtime.rs
|
|
// version: 1
|
|
|
|
//! Unit tests for SDL runtime configuration.
|
|
|
|
use engine_v1_sdl::SdlRuntime;
|
|
|
|
#[test]
|
|
fn runtime_configuration_constructs() {
|
|
let _runtime = SdlRuntime::new("test", 320, 240, 16);
|
|
}
|