lenso-runner 0.1.3

Native Tokio Runtime Driver and Runner for Lenso vNext.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::process::Command;

#[test]
fn native_runner_reports_the_kernel_terminal_outcome() {
    let output = Command::new(env!("CARGO_BIN_EXE_lenso-runner"))
        .output()
        .expect("native Runner should start");

    assert!(output.status.success());
    assert_eq!(
        String::from_utf8(output.stdout).expect("stdout should be UTF-8"),
        "Kernel terminal outcome: CleanShutdown\n"
    );
}