Tagged Questions

2
votes
6answers
296 views

Should I use “glass box” testing when it leads to *fewer* tests?

For example, I'm writing tests against a CsvReader. It's a simple class that enumerates and splits rows of text. Its only raison d'ĂȘtre is ignoring commas within quotes. It's less than a page. By ...
0
votes
2answers
61 views

Unit test 'structure' of method?

Sorry for the long post... While being introduced to a brown field project, I'm having doubts regarding certain sets of unit tests and what to think. Say you had a repostory class, wrapping a stored ...
0
votes
3answers
152 views

should unit tests be black box tests or white box tests?

Say I have three methods, all very similar but with different input types: void printLargestNumber(int a, int b) { ... } void printLargestNumber(double a, double b) { ... } void ...