I have this class that I wanted to build using TDD, but I failed. It's a pretty basic class called SubMissions, and all it does is it fetches some data from an SQL database.
So it has methods like getSubMissionForPage(), getSubMissionFromId() etc..
I tried building it using TDD. My first test contained a call to getSubMissionPage(), which only purpose is to return data. So making this test fail is pretty darn hard, since it can return any data, I couldn't come up with a way to make it fail.
I know making your test fail is the first step into knowing what to implement, but what do you do when there's actually no way of failing a test?
