mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
351 B
15 lines
351 B
use boa_macros::utf16; |
|
|
|
#[test] |
|
fn literal() { |
|
let utf16 = utf16!("hello!"); |
|
let manual = "hello!".encode_utf16().collect::<Vec<_>>(); |
|
assert_eq!(manual, utf16); |
|
} |
|
|
|
#[test] |
|
fn utf16() { |
|
let utf16 = utf16!("hello!😁😁😁"); |
|
let manual = "hello!😁😁😁".encode_utf16().collect::<Vec<_>>(); |
|
assert_eq!(manual, utf16); |
|
}
|
|
|