1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-24 05:06:06 +02:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Silvestre Abruzzo 5898d3dbf5
Merge 40e2330e8d into 258ff6f462 2024-04-12 09:33:06 +08:00
Silvestre Abruzzo 40e2330e8d feat: add structs4.rs exercise 2022-07-25 08:57:07 +02:00
2 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,62 @@
// structs4.rs
// Structs can have methods and the first parameter is always self. In this exercise
// we have defined the Planet struct and we want to test some logic attached to it,
// make the code compile and the tests pass! If you have issues execute `rustlings hint structs4`
// I AM NOT DONE
#[derive(Debug)]
struct Planet {
has_life: bool,
radius : u32
}
impl Planet {
fn new(radius: u32) -> Planet {
// Something goes here...
}
fn has_life(???) -> bool {
// Something goes here...
}
fn change_radius(???) {
// Something goes here...
}
fn create_life(???) {
// Something goes here...
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn create_planet() {
let planet = Planet::new(1000);
assert_eq!(planet.radius, 1000);
assert_eq!(planet.has_life(), false);
}
#[test]
fn add_life_to_planet() {
let planet = Planet::new(1000);
planet.create_life();
assert_eq!(planet.has_life(), true);
}
#[test]
fn change_radius_of_planet() {
let mut planet = Planet::new(1000);
planet.change_radius(2000);
assert_eq!(planet.radius, 2000);
}
}

View File

@ -454,6 +454,16 @@ the `Package` struct that this relates to?
Have a look in The Book, to find out more about method implementations:
https://doc.rust-lang.org/book/ch05-03-method-syntax.html"""
[[exercises]]
name = "structs4"
path = "exercises/structs/structs4.rs"
mode = "test"
hint = """
The signature of methods must be different depending on the fact that attributes of an instance are
read or written. How do we do that in Rust?
Have a look in The Book, to find out more about method implementations: https://doc.rust-lang.org/book/ch05-03-method-syntax.html"""
# ENUMS
[[exercises]]