Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Iteration speed of? A sprint?
It's sooner about maintaining a constant speed, i.e. slow and steady, while at the same time, and more importantly, producing quality tested code that is readable and maintainable. This is ultimately going to make you faster! -
xecute3788y@GinjaNinja yes I meant speed of a sprint. Banging out code during start of a product is easy. But changing code is just so much better with unit tests around.
-
They're an investment. Having no unit tests is a clear sign of some technical debt that hasn't been paid down, and as we know, tech debt comes to bite you in the arse eventually.
-
mort3228ywe are about to launch huge platform. Not only unit test saved us, but API ones were there when we needed them most. I'd still refactor those functions if not the test.
-
tytho23168yAbsolutely, for any team size, but especially large teams. I'm on a team with 100% coverage is the *minimum* (note that 100% is not the target, just the starting point) and we did a major refactor in about 1/10 of the time that other teams thought it would take. There is another team that is struggling to get through their normal sprints because they are constantly breaking functionality that wasn't properly tested. Eat your vegetables and write your tests.
Are there other devs who think unit tests actually are a major boost to iteration speed ?
undefined