Menu
cosmic-mobile
publicLatest change 81a853844c9ed3dea080b3c2392423933ea81e18 - Test phone safe-area contract by AkurAI Build
#[path = "../src/layout.rs"] mod layout;
#[test]
fn reserves_phone_edges_in_both_orientations() {
for (w,h) in [(450.,990.),(990.,450.),(360.,800.)] {
let [left,top,right,bottom] = layout::safe_area(w,h);
assert!(left >= 24. && top >= 52. && right <= w-24. && bottom <= h-34.);
assert!(right-left >= 280. && bottom-top >= 300.);
}
}