Kathy Sierra excellent post on When the “best tool for the job”… isn’t misses an important point. It’s not that she missed the point so much as she just didn’t go into it. But I think it deserves going into.
Many software developers become very attached to their favorite programming languages, methodologies, practices, and so forth. Checking the link-backs for my post “Twelve Benefits of Writing Unit Tests First” demonstrates this. One commenter on another blog even said he saw no value in reading the whole post, since it was specious and had no redeeming value. I took great joy in that comment, because it means I must be doing something right to push someone’s righteous buttons so accurately. Regardless, would test-first be the right tool for that programmer?
If you want to choose the best tool for the job, it’s not just about finding the tool with features that match up with the problem you’re trying to solve. You also have to take into account the people who will be using the tool. How well do they know it? How much do they like it. This latter may seem a silly parameter. But it does play into the equation. Any effective leader knows that it’s not enough to be right; you also have to get your people on-board. This is even one of the guiding principles of Alistair Cockburn’s Crystal Clear, that whatever practices you choose must be culturally relevent to the developers.
Here’s where Kathy stops. But we don’t have to stop here. Indeed, effective software teams never stop here. Witness Alistair’s second property of successful teams: reflective improvement. That is, we’re always looking to try new things and to validate them. If something doesn’t work, we know we don’t have to use it. We look for excuses to try new languages, new technologies, new practices. We shun excuses to avoid them. We are a growing team, not growing in numbers, but growing in maturity. Speaking of test-first, one commenter said you can’t try every new practice that comes down the pike. But a growing team can try almost every practice, one at a time. If you could try just one new practice a month, how many new practices could you try in a year? A growing team would never use this excuse to rule out any practice. They might decide to try something other than test-first to address the challenges they’re facing. But they wouldn’t just rule it out.
Similarly, a growing team would not write off the benefits of test-first, even if they did think the person touting those beneifts was high on drugs. Instead, they would ask whether test-first might address their situation. If so, they’d look for a way to try it. Maybe with a single module. Maybe with a sample project. If the experiment goes awry, how much effort would they lose? A few days? A week? Surely it’s worth that risk to find out whether this practice delivers on its promise and helps them do their job. Of course, before you can take that risk, you need to have slack in your schedule. You need to be able to burn time in order to try new things. Slack is where you grow.
But how does passion work into this? If we’re not passionate about a certain practice or programming language or framework, how can we use it? Even if we try it, won’t we sabotage our own efforts? After all, we can’t control what we’re passionate about, can we? To some extent, we can indeed control what we’re passionate about. Look at the passion of a growing team. A growing team is passionate about growth. And that means they will give new tools a fair chance. They might be skeptical. But because of their passion for growth, they will be able to set aside their skepticism. But they must choose to do so. They must choose to consider that maybe they’re wrong. They must choose to list what would need to happen to prove to them that they’re wrong. They must choose to test this list. They must choose to embrace the results and be excited to discover a new truth, to open up a new righteousness.
Growth is part of professionalism. Realistically, the members of a team will differ in their professionalism. Some will be more professional. Others will be less professional. After all, professionalism takes practice. Only some of them will be growing professionals. This may make it difficult—or impossible—to inject growth into a stagnant team. Reflective improvement itself may never be culturally appropriate, and the team may always be mediocre. Many growing professionals decide to go on to a new team that offers new challenges, rather than waiting for a stagnant team to catch up to them. For many people, this is the right course to take. For others, it’s more important to stick it out, take the leadership, and make a difference. And in a stagnant team, this will probably only happen over the long haul. It depends on your goals, your passions, and your strengths. And there we are back to choices.
Yes, it’s about passion. Inciting passion is one of the most powerful tools in the leader’s bag of tricks. Passion matters. It matters more than most managers want to admit. But decide whether you want to be a growing professional. Decide whether you want to be passionate about the tools or about the results. And if you choose the latter, know that you can indeed use the best tool for the job.
This is awesome… and gives me a lot more to think about. I’ll be talking about this part of the equation soon… and I agree with about 98.8475% of what you said (although I might have phrased a couple parts differently).
Thanks for adding the crucial point (and with very insightful thoughts about it all) that I did leave off (and not intentionally; this was definitely a big cliff in my post).
Thanks for the kind words, Kathy. BTW, Creating Passionate Users is one of my must-read blogs. Please keep it going!
-TimK
Talking about growth, I just read your article about the benefits of test-first unit testing. Good to see such vocal support for this great practice! I also have been doing it for a while now to my great satisfaction. Recently, I have started taking it a step further: document and test first. And integrate the two. In essence it is something like literate programming, not of the production code, but instead of the top-level use-case tests. See
http://arrenbrecht.ch/articles/SourceCiting.htm
for an article exploring the idea and its benefits in greater detail, and
http://arrenbrecht.ch/jcite/
for the tool I wrote to support this approach with Java.
-peo
Hi, Peter. This looks interesting. I’ve bookmarked it to look over in more detail. The approach seems particularly suited to libraries or other projects that must publish an API.
-TimK
Tim, this is exactly what I am using it for right now (on a project that is, unfortunately, not open-source yet, so I cannot show you). I’ve already gone on to make Excel sheets citable too because my project uses them as input. Nevertheless, I believe the approach should be extended to end-user applications, too. Web based stuff seems particularly doable. “Test first” would then be akin to building the app as a mockup first (as you should do for usability testing anyway) so you can cite individual screens in your docs explaining the flow of the documented use cases.
-peo
Nice to see someone else writing about Crystal Clear 🙂
Yeah, John. I’d actually like to try more from Crystal, and I’d like to read more about other people’s experiences.
-TimK
[…] J. Timothy King has a good post talking about trying out new tools and being open to experimentation. This is a great sentiment and really the only way to mature at all as software developers. Try new things and see if they help. If you are having trouble with your current tools and processes, then what is the harm in taking a few days (or weeks) to try something new? […]