I am developing a small parser class TDD style. Here are my tests:
...
[TestMethod]
public void Can_parse_a_float() {
InitializeScanner("float a");
Token expectedToken = new Token("float", "a");
Assert.AreEqual(expectedToken, scanner.NextToken());
}
[TestMethod]
public void Can_parse_an_int() {
InitializeScanner("int a");
Token expectedToken = new Token("int", "a");
Assert.AreEqual(expectedToken, scanner.NextToken());
}
[TestMethod]
public void Can_parse_multiple_tokens() {
InitializeScanner("int a float b");
Token firstExpectedToken = new Token("int", "a");
Token secondExpectedToken = new Token("float", "b");
Assert.AreEqual(firstExpectedToken, scanner.NextToken());
Assert.AreEqual(secondExpectedToken, scanner.NextToken());
}
What is bugging me is that the last test is exercising the same lines of code that both Can_parse_a_float() and Can_parse_an_int(). On one hand, it is exercising something that both those methods aren't: that from a source code string, I can get several tokens. On the other hand, were Can_parse_a_float() and Can_parse_an_int() fail, Can_parse_multiple_tokens() would fail too.
I feel there are 4 goals at stake here:
- I want my tests to show that my
Parserparses ints - I want my tests to show that my
Parserparses floats - I want my tests to show that my
Parsercan parse several ints/floats in a row - I want my tests to also serve well as a documentation mechanism (!)
I am offering cookies to anyone who shares his opinions on how to better approach this scenario. Thanks!
