Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
c276c356e0a347d729d2f082fb6452b81e3d64db
/
.
/
crates
/
textdistance
/
tests
/
integration_test.rs
blob: 325e58b103075b613793d30d55818752f11e3fb2 [
file
] [
log
] [
blame
]
#[
test
]
fn
test_str_hamming
()
{
let
res
=
textdistance
::
str
::
hamming
(
"hello"
,
"hi"
);
assert_eq
!(
res
,
4
);
}