diff options
Diffstat (limited to 'exercises/traits/traits1.rs')
| -rw-r--r-- | exercises/traits/traits1.rs | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/exercises/traits/traits1.rs b/exercises/traits/traits1.rs new file mode 100644 index 0000000..8253ef8 --- /dev/null +++ b/exercises/traits/traits1.rs @@ -0,0 +1,44 @@ +// traits1.rs +// Time to implement some traits! +// +// Your task is to implement the trait +// `AppendBar' for the type `String'. +// +// The trait AppendBar has only one function, +// which appends "Bar" to any object +// implementing this trait. + +// I AM NOT DONE +trait AppendBar { + fn append_bar(self) -> Self; +} + +impl AppendBar for String { + //Add your code here + +} + +fn main() { + let s = String::from("Foo"); + let s = s.append_bar(); + println!("s: {}", s); +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn is_FooBar() { + assert_eq!(String::from("Foo").append_bar(), String::from("FooBar")); + } + + #[test] + fn is_BarBar() { + assert_eq!( + String::from("").append_bar().append_bar(), + String::from("BarBar") + ); + } + +}
\ No newline at end of file |
