說明文件測試

Rust 內建說明文件測試相關支援:

#![allow(unused)]
fn main() {
/// Shortens a string to the given length.
///
/// ```
/// use playground::shorten_string;
/// assert_eq!(shorten_string("Hello World", 5), "Hello");
/// assert_eq!(shorten_string("Hello World", 20), "Hello World");
/// ```
pub fn shorten_string(s: &str, length: usize) -> &str {
    &s[..std::cmp::min(length, s.len())]
}
}
  • 系統會自動將 /// 註解中的程式碼區塊視為 Rust 程式碼。
  • 系統會編譯程式碼,執行 cargo test 時會一併執行這些程式碼。
  • 請在 Rust Playground 上測試上述程式碼。