#[cfg(test)]
mod tests {
#[test]
fn test_for_no_errors() {
use clipboard_win_html::set_clipboard_html;
set_clipboard_html("<h1>Pure, valid, HTML.</h1>".to_string()).unwrap();
set_clipboard_html("<h1>2nd Pure, valid, HTML.</h1>".to_string()).unwrap();
set_clipboard_html("<h1>3nd Pure, valid, HTML.</h1>".to_string()).unwrap();
set_clipboard_html("<h1>4th Pure, valid, HTML.</h1>".to_string()).unwrap();
}
}