day 42 @rust テスト

・テスト用の関数の作り方。
#[test]
fn test_feature_a() {
}

・テストの走らせ方。
cargo test

アサーション
assert_eq!(a, b);