bookmark_borderFacilitating the Global Day of Coderetreat 2013 in Amsterdam

On the 14th of December 2013 – the Global Day of Coderetreat was held at ZilverlineI have experience with coderetreats and also organised one at the 7th of january in 2012, and the GDCR12.

This time I both hosted and facilitated this event. This means that besides practical stuff I also did the talking which I will explain further in this post. This was the first time I did this and I’d like to share how it was. If you want to get an impression of the day you can have a look at this slideshow.

A big thanks to Bob Forma and Diana Sabanovic who helped me with the hosting aspects throughout. This enabled me to mostly focus on facilitating.

I was anxious, especially since last years GDCR was very well done. Back then I had a great experience and I was not sure if I could give the participants the same experience. Yet, I wanted to do this: I just love sharing knowledge and give people something to learn or think about.

After attending the GDCR Facilitator Training by Jim Hurne, I had a clear image of how I wanted the participants to experience the Coderetreat: People having fun, learning from each other and the constraints given.

Thats it.

Continue reading “Facilitating the Global Day of Coderetreat 2013 in Amsterdam”

bookmark_borderA Randori with Corey Haines

Saturday 8th of September 2012.

I came to Amsterdam Amstel train station, to pick up Corey Haines who I had asked if he wanted to meet the local community in Amsterdam and have some fun coding.

After I first introduced myself to a complete stranger (I swear he really looked like Corey Haines :))…
I then walked to (the real and smiling) Corey Haines and got us to the car to get to our location.

It was a fun evening coding. Around 10 people came and we mainly focussed on coding. I want to share one of the highlighting moments (to me) of that evening.

A Randori.

I never did a Randori before, but I really liked this form of group programming, so let me share this with you. Perhaps you might want to try it yourself with a group of developers you know.

So what is a Randori?
If I had to put it in one sentence: A Randori is a pair-group-rotating-programming session.

What we did
We did a Kata, but not all by ourselves… we did it all together.

Doing a Kata on your own is fun.
Doing a Kata with multiple people surely would be more fun right?

In this case we did the LED Display Kata.

But how did we do it as a group? Basically it works like this:
You have one person controlling the computer (called the Driver). Another person, called the Navigator, has a say in what should be made (design-wise). The Driver and the Navigator form a pair.

The rest of the people (the Audience) has a role as well:
When doing the Kata (in TDD of course), while you are in the red phase (test fails), the Audience must remain silent while the Driver and Navigator try to get the test to green (test passes). The Driver and Navigator may talk and work it out. Once the test is green, the refactor phase starts, the Audience is allowed to bring in suggestions. Want to shut up the audience? Write a failing test 😉

After a few minutes (in our case 5 minutes) you switch roles:
Navigator becomes Driver
Driver becomes Audience member
someone from the Audience becomes Driver

That’s a whole ‘session’. Reset the timer, and continue with the Kata where the previous pair left off.

Since you cannot write new code without a failing test, the Navigator is obliged to write (or let the Driver write to be more exact) a failing test first.

To avoid major rewrites of the code, there is a restriction to the Navigator. He may only refactor big changes after introducing an amount of new tests. Only when the tests pass, the Navigator may introduce major design changes.

So why is this fun?

It is fun for several reasons:
– It resembles a real world problem, where you have to work with existing code (and you can’t change the whole design because you feel like it).
– It’s fun to have short discussions about the code and its design
– You learn a lot from others when discussing code and design
– You learn how Java sucks by having no String.join() 😉

Picture or it did not happen!
Here you can see Corey Haines (at the left) in the session, looking at code that Arjen (at the right) is typing. And yes, I am taking this picture so you don’t see me on it of course! 🙂

Recap
Doing a Kata is a fun excersise alone. If you are with a group of people you could consider doing a Randori, and have fun coding together. The Kata itself is only the means to pair program, fix a problem, in existing code you did not write and trying to

Practical: What do you need
– A group of people (around 10 people)
– A computer with a dev environment installed (testing framework required)
– A big screen / a beamer

Thanks!
Special thanks to Corey Haines for coming over and let us have this experience!

Footnote: Later Arjen, Daniel and I had worked on the LED Kata again in a teamviewer session. We made a working solution (we wanted to crack the problem badly), which is also on Github.

bookmark_borderAnother reason to participate in a coderetreat

I’ve attended a coderetreat not so long ago in Rotterdam.

I have talked about coderetreats before; how they help improve your skills.

The most important reason to join coderetreats however is to just have fun.

I had a good time!

Why don’t you join a coderetreat event nearby and have a good time as well? 🙂

DSC_4348

bookmark_borderThe difference between TDD and Test First Development

Recently I promoted to do TDD, instead of “Tests First” development. Some people asked me what the difference is between them. In both cases we write tests first right?

So what is the difference?

I believe the difference is this:

Test First decribes your solution. TDD describes the problem

The difference could probably be explained best when using the coderetreat I had organized at the beginning of this year. Within this session I had experienced a great example to tell the difference between Tests first and TDD. To clarify the difference in this blog, we will be writing an implementation of Conway’s Game Of Life. It has the following rules:

  1. Any live cell with fewer than two live neighbours dies, as if caused by under-population.
  2. Any live cell with two or three live neighbours lives on to the next generation.
  3. Any live cell with more than three live neighbours dies, as if by overcrowding.
  4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

And it looks like this:

Image
Game Of Life in Action – Image from Wikipedia

Your assignment:

Write code that implements to the four rules above. It should be possible to apply these on an infinite grid

Test First describes your solution:
So the rules talk about “cells” and in your mind you’re already trying to solve this puzzle. In fact, I bet you’re already thinking about some array to put this matrix of cells into. Using a matrix we can easily determine neigbours and solve this puzzle…

We start with the first rule: “Any live cell with fewer than two live neighbours dies, …“.

We know it needs neighbours, so we need some boilerplate for that right?

The first test looks like this:

public class CellTest {

  @Test
  public void mustReturnTrueWhenAlive() {
    Cell cell = new Cell(1,0);
    Assert.assertTrue(cell.isAlive());
  }

}

Since we’re doing TDD (atleast we think it is, we’re actually doing Tests First…), we need to create this Cell class to make it compile.

public class Cell {

  private long x, y;

  public Cell(int x, int y) {
    this.x = x;
    this.y = y;
  }

  public boolean isAlive() {
    return true;
  }
}

Before we can do anything with counting the number of neighbours, we need to determine what a neighbour is. Since adjecent cells are counted as neighbours, we start writing tests for this:

@Test
public void mustReturnTrueWhenNextToAnotherCell() {
  Cell cell = new Cell(1,0);
  Cell adjecent = new Cell(1,1);
  Assert.assertTrue(cell.isAdjecent(adjecent));
}

@Test
public void mustReturnFalseWhenNotNextToAnotherCell() {
  Cell cell = new Cell(1,0);
  Cell adjecent = new Cell(3,3);
  Assert.assertFalse(cell.isAdjecent(adjecent));
}

And along with it the code:

public class Cell {

  private long x, y;

  public Cell(int x, int y) {
    this.x = x;
    this.y = y;
  }

  public boolean isAlive() {
    return true;
  }

  public boolean isAdjecent(Cell adjecent) {
    long diffX = Math.abs(adjecent.getX() - x);
    long diffY = Math.abs(adjecent.getY() - y);
    return diffX == 1 || diffY == 1;
  }

  public long getX() {
    return x;
  }

  public long getY() {
    return y;
  }
}

Wait, stop, halt!

If the above sounds familiar, then I’ve got news: This is not TDD

Lets get back to the original question, what did we try to implement? Ah, it was the question:

“Any live cell with fewer than two live neighbours dies, as if caused by under-population”,

So where is the corresponding test for that?…

In fact, we have already three tests and a bunch of code, and we still are not able to answer that question.

What we’ve done so far is write tests first in order to prove a solution we already had in our minds. We did not let the tests guide us to a design. In fact, we already had a design in our heads and made the tests conform to those.

Lets do it in TDD, for real

So how is it done ? – Test Driven Development

With a clean slate, we start over. And we start with the first rule:

“Any live cell with fewer than two live neighbours dies, as if caused by under-population”

So we create a test (we call it Test, because we do not think about Cells yet, in fact, we are only thinking about this very question).

@org.junit.Test
public void anyLiveCellWithFewerThanTwoLiveNeighboursDies() {
   int neighbours = 1;
   Assert.assertTrue(neighbours < 2);
}

So what does this do, it basically returns true when neighbours is lower than two. We do not call methods yet, we simply have our implementation within the test itself. In this phase, we already had Red (non compiling), Green (compiling and green test). On to refactor. How to get it more descriptive? We could do something like this:

@org.junit.Test
public void anyLiveCellWithFewerThanTwoLiveNeighboursDies() {
  int neighbours = 1;
  boolean shouldDie = neighbours < 2;
  Assert.assertTrue(shouldDie);
}

Do we need to do anything else? Certainly! But the essential rule is there already. It is one simple statement, no neighbour checking yet. And in fact, we will not need it to implement the four rules! Lets continue. I am serious, we will not modify the above code yet. We have yet to implement the other rules. Lets pick the second:

“Any live cell with two or three live neighbours lives on to the next generation.”

We have actually two cases here, for two and three live neighbours. Lets start with two:

@org.junit.Test
public void anyLiveCellWithTwoNeighboursLivesOn() {
  int neighbours = 2;
  boolean shouldLiveOn = neighbours == 2;
  Assert.assertTrue(shouldLiveOn);
}

Not that much different is it? How about we add the third test for the second rule:

@org.junit.Test
public void anyLiveCellWithThreeNeighboursLivesOn() {
  int neighbours = 3;
  boolean shouldLiveOn = neighbours == 3;
  Assert.assertTrue(shouldLiveOn);
}

The total test class looks like this now:

public class Test {

  @org.junit.Test
  public void anyLiveCellWithOneThanTwoLiveNeighboursDies() {
    int neighbours = 1;
    boolean shouldDie = neighbours < 2;
    Assert.assertTrue(shouldDie);
  }

  @org.junit.Test
  public void anyLiveCellWithTwoNeighboursLivesOn() {
    int neighbours = 2;
    boolean shouldLiveOn = neighbours == 2;
    Assert.assertTrue(shouldLiveOn);
  }

  @org.junit.Test
  public void anyLiveCellWithThreeNeighboursLivesOn() {
    int neighbours = 3;
    boolean shouldLiveOn = neighbours == 3;
    Assert.assertTrue(shouldLiveOn);
  }
}

We have done some little TDD cycles already. We started describing the problem domain, and we added the minimum amount of code to make this work. We did not yet start write any production code yet. Now one of the most important steps in TDD should be taken: Refactor. (Remember it is Red – Green – Refactor!)

With the third test, we clearly see duplication. The shouldLiveOn can be extracted to a method. Lets do that:

import org.junit.Assert;

public class Test {

  @org.junit.Test
  public void anyLiveCellWithOneThanTwoLiveNeighboursDies() {
    int neighbours = 1;
    boolean shouldDie = neighbours < 2;
    Assert.assertTrue(shouldDie);
  }

  @org.junit.Test
  public void anyLiveCellWithTwoNeighboursLivesOn() {
    int neighbours = 2;
    Assert.assertTrue(shouldLiveOn(neighbours));
  }

  @org.junit.Test
  public void anyLiveCellWithThreeNeighboursLivesOn() {
    int neighbours = 3;
    Assert.assertTrue(shouldLiveOn(neighbours));
  }

  private boolean shouldLiveOn(int neighbours) {
    return neighbours == 3 || neighbours == 2;
  }
}

We could refactor out the neighbours var to a constant, which should give us even smaller tests.

At this point we have now our first method which could eventually be moved out of the test class into some other class (we have yet to think of a name for). As you can see, the design of our code is being driven by the tests. So this may like trivial and like ‘cheating’. In fact, as I see it we are actually answering the real questions. We tend to write code for stuff we cannot possibly be sure of that it is correct. Did you see any line say that the Game of Life in this situation should be on a 2D grid? What if it would be 3D? What if we did not know yet if it would be 2D or 3D?

This sounds a lot like real-life isn’t it? Where your customer does not always know exactly what he wants.

Another good thing is, we can implement all rules like this. Eventually we end up with a test class that contains several methods. From there on we can think of a logical way to group them. Methods grouped together will form classes. We tend to group methods logically. When we define the problem domain we know better what classes should exist. Again, our tests drive the design. Instead of the other way around.

Here is an impression how the four rules implemented might look like:

package com.fundynamic.coderetreat;

import org.junit.*;

public class Test {

  public static final int StarvationThreshold = 1;
  public static final int OverpopulationThreshold = 4;
  public static final int MinimumRevivalThreshold = 3;
  public static final int MaximumRevivalThreshold = 3;

  @org.junit.Test
  public void liveCellShouldDieIfLessNeighboursThanStarvationThreshold() {
    int amountNeighbours = StarvationThreshold;
    Assert.assertEquals(false, livesOnToNextGeneration(amountNeighbours));
  }

  @org.junit.Test
  public void liveCellShouldDieIfNeighboursEqualToStarvationThreshold() {
    int amountNeighbours = StarvationThreshold;
    Assert.assertEquals(false, livesOnToNextGeneration(amountNeighbours));
  }

  @org.junit.Test
  public void liveCellShouldLiveIfTwoNeighbours() {
    int amountNeighbours = StarvationThreshold +1;
    Assert.assertEquals(true, livesOnToNextGeneration(amountNeighbours));
  }

  @org.junit.Test
  public void liveCellShouldLiveIfThreeNeighbours() {
    int amountNeighbours = 3;
    Assert.assertEquals(true, livesOnToNextGeneration(amountNeighbours));
  }

  @org.junit.Test
  public void liveCellShouldDieIfFourNeighbours() {
    int amountNeighbours = 4;
    Assert.assertEquals(false, livesOnToNextGeneration(amountNeighbours));
  }

  @org.junit.Test
  public void liveCellShouldDieIfEightNeighbours() {
    int amountNeighbours = 8;
    Assert.assertEquals(false, livesOnToNextGeneration(amountNeighbours));
  }

  @org.junit.Test
  public void deadCellShouldReviveIfMinimumRevivalThreshold() {
    int amountNeighbours = MinimumRevivalThreshold;
    Assert.assertEquals(true, revivesInNextGeneration(amountNeighbours));
  }

  @org.junit.Test
  public void deadCellShouldReviveIfMaximumRevivalThreshold() {
    int amountNeighbours = MaximumRevivalThreshold;
    Assert.assertEquals(true, revivesInNextGeneration(amountNeighbours));
  }

  @org.junit.Test
  public void deadCellShouldNotReviveIfLessNeighboursThanMinimumRevivalThreshold() {
    int amountNeighbours = MinimumRevivalThreshold -1;
    Assert.assertEquals(false, revivesInNextGeneration(amountNeighbours));
  }

  @org.junit.Test
  public void deadCellShouldNotReviveIfMoreNeighboursThanMaximumRevivalThreshold() {
    int amountNeighbours = MaximumRevivalThreshold +1;
    Assert.assertEquals(false, revivesInNextGeneration(amountNeighbours));
  }

  private boolean livesOnToNextGeneration(int amountNeighbours) {
    return amountNeighbours > StarvationThreshold && amountNeighbours < OverpopulationThreshold;
  }

  private boolean revivesInNextGeneration(int amountNeighbours) {
    return amountNeighbours == MinimumRevivalThreshold;
  }
}

But you did not even get to any cell? How is this any good?

It is true that cells play a role in the Game of Life eventually. But they do not play a role in answering the four questions. In fact, what are cells? We might be talking about squared cells or triangled or circled cells. Perhaps the requirement is to write a 3d version of a cell. Or you might want to use hexagons. If you put the rules logic into a cell, it gets very hard to modify your code because you have put too much responsibility in one class.

TDD prevents you from doing this. It prevents you from doing ‘design upfront’.

Also, if you started with using Cells and the matrix and all that. I would wonder how you would implement the last rule (reviving cells). How would you solve this problem?

Bottom line

Writing tests before your production code (test first) is not the same as TDD. TDD is about how your tests drive your design. Only then you can say if you are doing TDD or actually are just writing tests proving your own solution you have thought about before-hand.

It is hard to not think ahead of your design, and instead trust on our tests to let the design emerge itself. This requires practice. Practicing this can be done in coderetreats for instance.

 

Disclaimer about design…

TDD works great on a lot of levels in your architecture. This does not mean you can just do everything with TDD. Good architectural design requires thinking. You can’t just ‘do TDD’ and magically have a perfect design emerging. However, TDD will give you surprisingly elegant results. Especially, the more specific your problem (with a clear scope) the better TDD yields results.