You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
328 B
Rust

use integ_test_example;
#[test]
fn files_test1() {
assert_ne!(integ_test_example::get_process_id(), 0, "Error in code");
}
/* Hello this is a multiline
* comment
*/
// Hello this is a single line comment
#[test]
fn files_test2() {
assert_eq!(1 + 1, 2);
}
#[test]
#[ignore]
fn process_test1() {
assert!(true);
}