DaedTech

Stories about Software

By

ChessTDD 36: Acceptance Tests for Queen Movement

This episode went smoothly until I discovered a bug.  Philosophically, I suppose this is the natural state of software development.  For my purposes here, though, hunting down the bug caused the episode to balloon to 26 minutes, so I’m going to try a new thing so as to keep the videos a reasonable length of time.  I’m splitting it into 2 videos: parts A and B.  Please let me know if this approach is preferable to sometimes having long videos or not; if you leave feedback, I’ll more likely do it the way you prefer, since I’m just trying to go with what people like.

What I accomplish in these clips:

  • Created a couple of code snippets in CodeRush to get rid of the hand typing in the specflow scenarios.
  • Wrote acceptance tests for the queen’s movement.
  • Squashed a subtle bug (or at least half of one).

Here are some lessons to take away:

  • Projects go better when there are more eyeballs on them.  Run things you’re doing by other people and see if they have suggestions that might help.  They may think of things that never would have occurred to you and might later seem obvious.
  • Whenever you make mistakes copying and pasting, it’s a crapshoot whether fixing them takes more time than you would have spent hand-typing or not.  In my experience, most of the time you don’t come out on the winning end, and wholesale copy-paste obscures your understanding.  This is why I try to avoid the practice.
  • What I find is that unit tests should be very directed and specific about system behaviors.  But acceptance tests let you put on your exploratory testing hat, dreaming up scenarios in which users might use this thing that could potentially break it.  For you unit testing newbies, fight the urge to write unit tests with lots of assertions that cover a lot of ground.  You can express that in your acceptance tests.
  • Once again, don’t do low-hanging fruit refactorings (e.g. deleting dead code) when you have red tests.  It might seem like it’s not a problem, but it will come back to haunt you at some point.
  • Another example in this episode of finding a bug with a failing acceptance test, and drilling in to get closer by writing failing unit tests.  This is an excellent and helpful practice.
  • TDD facilitates Eureka moments where you try something you think might work and you see all of your tests go green.  However, just like trying something in your code and seeing the application magically behave correctly next time you run it, it’s important to cement your understanding of why it worked.  Don’t program by coincidence, even if you have a green test suite backing you.  Keep writing tests and/or reasoning about the code until you’re sure you understand what’s happening.  (Writing tests provides an excellent way to prove your understanding to yourself).

11 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Oded Coster
Oded Coster
8 years ago

Just realized that your full board has the black king and queen in the wrong positions (queens and kings for both colors start on the same column, also stated as white queen starts on a white square and black queen starts on a black square).

Erik Dietrich
8 years ago
Reply to  Oded Coster

Good catch. I’ll fix that in the next episode. Been a while since I’ve played, and the color heuristic you mention is how I setup pieces (find the middle square of my color, put the queen there), so not having a board with actual colors on it kind of messes with me.

Geoff Mazeroff
8 years ago

Having a two-part video was an improvement. It gives people the option to watch the second one later. My issue (i.e., not something I expect you to address) is that if I know all the content is available, I’m compelled to watch both in one sitting just so I can check it off my list.

Erik Dietrich
8 years ago
Reply to  Geoff Mazeroff

Glad to hear it was better. I’m still striving for shorter episodes on the whole, but I’m realizing that’s not always possible. Basically, if I get 10 minutes in and start down a rabbit hole, my choices are this or backing out my changes and doing a more practiced run at it (which goes against my promise of un-edited development).

By the way, I totally know what you mean about checking things off of your list 🙂

Guy Boicey
Guy Boicey
8 years ago

I don’t mind the two videos, but I’m also capable of making a mental note as to the time I stopped a video to watch later. In case I have to take a break, to do, squirrel.

Erik Dietrich
8 years ago
Reply to  Guy Boicey

I’m going to do my best to make it not necessary by attempting to avoid flubbing my way into quagmires 🙂

Guy Boicey
Guy Boicey
8 years ago

readability and the use of var. My understanding is that var is best used when the type can be inferred from the line of code. But when in those cases where you can’t infer the type then included type. With the exception if the line to too long then use var. This is like i before e except after c and then for all these other rules. I know I’m going to ask this questions. But, I figure the answer based on the videos so far, that you favor var regardless. I get the brevity of code, but for the… Read more »

Erik Dietrich
8 years ago
Reply to  Guy Boicey

I’ve written about this some. In this post: https://daedtech.com/a-rider-to-the-law-of-demeter I refer to an older post where I address this topic in the comments too. TL;DR is that the reason I favor var everywhere revolves around comparable ease of refactoring as well as gentle pressure to write better names. I also have a broader philosophy where I don’t much sweat coding standards and am not terribly interested in stylistic debates. What I mean is, if we cover the code well with tests and factor it decently, then if you prefer reading it with explicit typing in some cases, by all means,… Read more »

Guy Boicey
Guy Boicey
8 years ago
Reply to  Erik Dietrich

Nothing in theory is TL;DR unless we are lazy. If that was the case half you blog post would not be read. If not for readability but for brevity. Why then do I see code with class names a mile long. Another question/opinion how does var impact type safety? I read the article and the comments about compiling. In the example, as a consumer/client of the library I would always assume it to be int. I can perform int specific logic and assign the results to int. If the producer changed to long that would be a breaking change. As… Read more »

Erik Dietrich
8 years ago
Reply to  Guy Boicey

Just to clarify something up front (not wanting to assume anything about what you do or don’t know), using implicit typing has no actual impact on the compiled IL. So, if I write var x = GetFoo() and GetFoo() returns ICollection, x is an ICollection. Compiled, it’d be identical to me having ICollection x = GetFoo(); (Apologies if you’re already aware of that — just want to be clear) So, regarding type safety, “var” thus has no impact. If I’m consuming a library with an interfaced method that returns int, and they introduce a breaking change to have it return… Read more »

Guy Boicey
Guy Boicey
8 years ago
Reply to  Erik Dietrich

Being clear is good. After 20 years I still try as hard as possible to be humble, convincing myself that I don’t know anything and I don’t. My point was more of var x = GetFoo() I don’t know if it is ICollection or List, or …. without IntelliSense or some other way to determine it. One type acts different than another. I also gather that maybe like me your team of people is small, so small it is person not people. I think what we can agree on is this is more of a personal preference. I’m sure in… Read more »