For example, I have to create Vector class that can return vectors length.
First I add test:
@Test
public void shouldReturnLengthOfVector() {
Vector3D vector = new Vector3D(4d, 2d, -4d);
assertThat(vector.length(), is(6d));
}
While writing test, create class Vector3D and add method stub.
public double length() {
// TODO Auto-generated method stub
return 0;
}
Test do not pass. What is simples thing to pass the test? Hard coded value:
public double length() {
return 6d;
}
Test passes. Now I add some method that checks "cornercase":
@Test
public void someCornercaseShouldReturnLengthOfVector() {
Vector3D vector = new Vector3D(1d, -2d, -2d);
assertThat(vector.length(), is(3d));
}
Of-course that does not pass. I change my implementation:
public double length() {
return Math.sqrt(i * i + j * j + k * k);
}
Everything is green!
How to pick names for methods when I follow "simplest thing that can possibly work" principle? In this example method someCornercaseShouldReturnLengthOfVector and that is't good name.
length()? You are just going to replace this in a few steps later on. Why make tests pass just for the sake of passing? – matt b Apr 19 '11 at 13:35