Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add structs4.rs exercise #1107

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
62 changes: 62 additions & 0 deletions exercises/structs/structs4.rs
Original file line number Diff line number Diff line change
@@ -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);
}
}
10 changes: 10 additions & 0 deletions info.toml
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,16 @@ For calculate_transport_fees: Bigger is more expensive usually, we don't have si

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]]
Expand Down