mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-01-03 01:09:18 +00:00
42 lines
834 B
Rust
42 lines
834 B
Rust
// structs1.rs
|
|
// Address all the TODOs to make the tests pass!
|
|
|
|
struct ColorClassicStruct<'a> {
|
|
name: &'a str,
|
|
hex: &'a str,
|
|
}
|
|
|
|
struct ColorTupleStruct<'a> (&'a str, &'a str);
|
|
|
|
#[derive(Debug)]
|
|
struct UnitStruct;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn classic_c_structs() {
|
|
let green = ColorClassicStruct {name: "green", hex: "#00FF00"};
|
|
|
|
assert_eq!(green.name, "green");
|
|
assert_eq!(green.hex, "#00FF00");
|
|
}
|
|
|
|
#[test]
|
|
fn tuple_structs() {
|
|
let green = ("green", "#00FF00");
|
|
|
|
assert_eq!(green.0, "green");
|
|
assert_eq!(green.1, "#00FF00");
|
|
}
|
|
|
|
#[test]
|
|
fn unit_structs() {
|
|
let unit_struct = UnitStruct;
|
|
let message = format!("{:?}s are fun!", unit_struct);
|
|
|
|
assert_eq!(message, "UnitStructs are fun!");
|
|
}
|
|
}
|