From a990de90fe41456a23e58bd087d2f107d321f3a1 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 19 Jul 2024 16:37:58 +0400 Subject: Deleted vendor folder --- vendor/encode_unicode/tests/exhaustive.rs | 34 ------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 vendor/encode_unicode/tests/exhaustive.rs (limited to 'vendor/encode_unicode/tests/exhaustive.rs') diff --git a/vendor/encode_unicode/tests/exhaustive.rs b/vendor/encode_unicode/tests/exhaustive.rs deleted file mode 100644 index ce60c6b..0000000 --- a/vendor/encode_unicode/tests/exhaustive.rs +++ /dev/null @@ -1,34 +0,0 @@ -/* Copyright 2018 The encode_unicode Developers - * - * Licensed under the Apache License, Version 2.0, or the MIT license , at your option. This file may not be - * copied, modified, or distributed except according to those terms. - */ - -//! Tests that try all possible values for at least one parameter / byte / unit -//! of the tested function. - -use std::char; -extern crate encode_unicode; -use encode_unicode::*; - -#[test] -fn from_ascii() { - for cp in 0u32..256 { - assert_eq!(Utf8Char::from_ascii(cp as u8).is_ok(), cp & 0x80 == 0); - if let Ok(u8c) = Utf8Char::from_ascii(cp as u8) { - assert_eq!(u8c, Utf8Char::from(cp as u8 as char)); - } - } -} - -#[test] -fn from_bmp() { - for cp in 0u32..0x1_00_00 { - assert_eq!( - Utf16Char::from_bmp(cp as u16).ok(), - char::from_u32(cp).map(|u32c| Utf16Char::from(u32c) ) - ); - } -} -- cgit v1.2.3