11 books
—
1 voter
“
In many ways, being a good tester is harder than being a good developer because testing requires not only a very good understanding of of the development process and its products, but it also demands an ability to anticipate likely faults and errors
”
― A Practical Guide to Testing Object-Oriented Software
― A Practical Guide to Testing Object-Oriented Software
“
The approach shown... is a common pattern for testing exception-throwing behavior with JUnit.
― Test Driven: Practical TDD and Acceptance TDD for Java Developers
@Test
public void missingValueRaisesException() throws Exception {
try {
new Template("${foo}").evaluate();
fail("evaluate() should throw an exception if "
+ "a variable was left without a value!");
} catch (MissingValueException expected) {
}
}
...more
”
― Test Driven: Practical TDD and Acceptance TDD for Java Developers
This the reading group for software testing and automation meetup group memebers
1 member,
last active 11 years ago
79 members,
last active 9 years ago
Books For All Software Testing Professionals
9 members,
last active 13 years ago























