-
Notifications
You must be signed in to change notification settings - Fork 521
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
brackets: simplify required interface (#620)
The Brackets struct has a single purpose: To allow `is_balanced` to be called. It forces an object-style without any advantages over a simple function.
- Loading branch information
1 parent
334cdf7
commit 265896d
Showing
5 changed files
with
25 additions
and
45 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,3 @@ | ||
pub struct Brackets; | ||
|
||
impl<'a> From<&'a str> for Brackets { | ||
fn from(input: &str) -> Self { | ||
unimplemented!("From the '{}' input construct a new Brackets struct", input); | ||
} | ||
} | ||
|
||
impl Brackets { | ||
pub fn are_balanced(&self) -> bool { | ||
unimplemented!("Check if your Brackets struct contains balanced brackets"); | ||
} | ||
pub fn brackets_are_balanced(string: &str) -> bool { | ||
unimplemented!("Check if the string \"{}\" contains balanced brackets", string); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,88 @@ | ||
extern crate bracket_push; | ||
|
||
use bracket_push::*; | ||
use bracket_push::brackets_are_balanced; | ||
|
||
#[test] | ||
fn paired_square_brackets() { | ||
assert!(Brackets::from("[]").are_balanced()); | ||
assert!(brackets_are_balanced("[]")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn empty_string() { | ||
assert!(Brackets::from("").are_balanced()); | ||
assert!(brackets_are_balanced("")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn unpaired_brackets() { | ||
assert!(!Brackets::from("[[").are_balanced()); | ||
assert!(!brackets_are_balanced("[[")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn wrong_ordered_brackets() { | ||
assert!(!Brackets::from("}{").are_balanced()); | ||
assert!(!brackets_are_balanced("}{")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn wrong_closing_bracket() { | ||
assert!(!Brackets::from("{]").are_balanced()); | ||
assert!(!brackets_are_balanced("{]")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn paired_with_whitespace() { | ||
assert!(Brackets::from("{ }").are_balanced()); | ||
assert!(brackets_are_balanced("{ }")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn simple_nested_brackets() { | ||
assert!(Brackets::from("{[]}").are_balanced()); | ||
assert!(brackets_are_balanced("{[]}")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn several_paired_brackets() { | ||
assert!(Brackets::from("{}[]").are_balanced()); | ||
assert!(brackets_are_balanced("{}[]")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn paired_and_nested_brackets() { | ||
assert!(Brackets::from("([{}({}[])])").are_balanced()); | ||
assert!(brackets_are_balanced("([{}({}[])])")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn unopened_closing_brackets() { | ||
assert!(!Brackets::from("{[)][]}").are_balanced()); | ||
assert!(!brackets_are_balanced("{[)][]}")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn unpaired_and_nested_brackets() { | ||
assert!(!Brackets::from("([{])").are_balanced()); | ||
assert!(!brackets_are_balanced("([{])")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn paired_and_wrong_nested_brackets() { | ||
assert!(!Brackets::from("[({]})").are_balanced()); | ||
assert!(!brackets_are_balanced("[({]})")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn math_expression() { | ||
assert!(Brackets::from("(((185 + 223.85) * 15) - 543)/2").are_balanced()); | ||
assert!(brackets_are_balanced("(((185 + 223.85) * 15) - 543)/2")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn complex_latex_expression() { | ||
let input = "\\left(\\begin{array}{cc} \\frac{1}{3} & x\\\\ \\mathrm{e}^{x} &... x^2 \ | ||
\\end{array}\\right)"; | ||
assert!(Brackets::from(input).are_balanced()); | ||
assert!(brackets_are_balanced(input)); | ||
} |