ki18n-rs/tests/klocalizedstring_tests.rs
2021-12-15 21:55:23 +05:30

17 lines
405 B
Rust

use ki18n::klocalizedstring::KLocalizedString;
use std::ffi::CString;
#[test]
fn application_domain() {
const APPLICATION_DOMAIN: &str = "KI18n";
let domain = CString::new(APPLICATION_DOMAIN).unwrap();
KLocalizedString::set_application_domain(&domain);
let domain = KLocalizedString::application_domain();
assert_eq!(domain.to_str().unwrap(), "KI18n");
}
#[test]
fn languages() {}