mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-23 01:13:23 +00:00
Refactor project structure
This commit is contained in:
committed by
Tate, Hongliang Tian
parent
bd878dd1c9
commit
e3c227ae06
24
kernel/libs/int-to-c-enum/tests/regression.rs
Normal file
24
kernel/libs/int-to-c-enum/tests/regression.rs
Normal file
@ -0,0 +1,24 @@
|
||||
// SPDX-License-Identifier: MPL-2.0
|
||||
|
||||
use int_to_c_enum::TryFromInt;
|
||||
|
||||
#[derive(TryFromInt, Debug, PartialEq, Eq)]
|
||||
#[repr(u8)]
|
||||
enum Color {
|
||||
Red = 1,
|
||||
Blue = 2,
|
||||
Green = 3,
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn conversion() {
|
||||
let color = Color::try_from(1).unwrap();
|
||||
println!("color = {color:?}");
|
||||
assert!(color == Color::Red);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn invalid_value() {
|
||||
let color = Color::try_from(4);
|
||||
assert!(color.is_err());
|
||||
}
|
Reference in New Issue
Block a user