|
|
|
|
|
by scott_s
5286 days ago
|
|
I think your analysis is for executing every distinct code path. I read through the SQLite testing page, and they claim 100% branch coverage, which means that they test every possible outcome of a branch - but that's different from what you're going after, which is every possible code path. (Not disagreeing, I just had to go through this process in my head when I thought about what you said in comparison to what they said.) |
|
For any nontrivial project, testing every codepath is basically impossible, unfortunately. :(