mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-28 14:27:36 +03:00
7e16690f10
This commit moves the `webidl/tests` folder to a new `crates/webidl-tests` crate (to have a test-only build script) and ports them to the `#[wasm_bindgen_test]` attribute, which should hopefully make testing much speedier for execution!
21 lines
719 B
Rust
21 lines
719 B
Rust
use wasm_bindgen_test::*;
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/array.rs"));
|
|
|
|
#[wasm_bindgen_test]
|
|
fn take_and_return_a_bunch_of_slices() {
|
|
let f = TestArrays::new().unwrap();
|
|
assert_eq!(f.strings("y"), "x");
|
|
assert_eq!(f.byte_strings("yz"), "xx");
|
|
assert_eq!(f.usv_strings("abc"), "efg");
|
|
assert_eq!(f.f32(&[1.0, 2.0]), [3.0, 4.0, 5.0]);
|
|
assert_eq!(f.f64(&[1.0, 2.0]), [3.0, 4.0, 5.0]);
|
|
assert_eq!(f.i8(&[1, 2]), [3, 4, 5]);
|
|
assert_eq!(f.i16(&[1, 2]), [3, 4, 5]);
|
|
assert_eq!(f.i32(&[1, 2]), [3, 4, 5]);
|
|
assert_eq!(f.u8(&[1, 2]), [3, 4, 5]);
|
|
assert_eq!(f.u8_clamped(&[1, 2]), [3, 4, 5]);
|
|
assert_eq!(f.u16(&[1, 2]), [3, 4, 5]);
|
|
assert_eq!(f.u32(&[1, 2]), [3, 4, 5]);
|
|
}
|